<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.1/underscore-min.js"></script>
<div ng-app="fruit">
<div ng-controller="FruitControl">
<h1>{{apples.length}} apples.</h1>
<div>Expected: The color of 1 of them is red.</div>
<div>
---Actual:
<span display-count list="apples" count-prop="'color'" count-val="'red'"></span>
</div>
<h1>{{bananas.length}} bananas.</h1>
<div>Expected: The weight of 1 of them is 2.</div>
<div>
---Actual:
<span display-count list="bananas" count-prop="'weight'" count-val="'2'"></span>
</div>
</div>
</div>