@@ -73,22 +73,22 @@ describe('Generic Utilities', () => {
7373 }
7474
7575 describe ( 'when passed an object literal' , ( ) => {
76- it ( 'invokes callback for each property' , ( ) => {
76+ it ( 'should invoke callback for each property' , ( ) => {
7777 const fixture = new Fixture ( )
7878 const spy = sinon . spy ( )
7979 each ( fixture , spy )
8080 expect ( spy ) . to . have . been . calledTwice
8181 } )
8282
83- it ( 'ignores properties on the prototype chain' , ( ) => {
83+ it ( 'should ignore properties on the prototype chain' , ( ) => {
8484 Fixture . prototype . biff = 'baff'
8585 const fixture = new Fixture ( )
8686 const spy = sinon . spy ( )
8787 each ( fixture , spy )
8888 expect ( spy ) . to . have . been . calledTwice
8989 } )
9090
91- it ( 'passes the value, key and collection to the callback' , ( ) => {
91+ it ( 'should pass the value, key and collection to the callback' , ( ) => {
9292 const fixture = new Fixture ( )
9393 let _value , _key , _collection
9494 each ( fixture , ( value , key , collection ) => {
@@ -105,13 +105,13 @@ describe('Generic Utilities', () => {
105105 describe ( 'when passed an array' , ( ) => {
106106 const fixture = [ 'apple' , 'orange' , 'banana' ]
107107
108- it ( 'invokes callback for each value' , ( ) => {
108+ it ( 'should invoke callback for each value' , ( ) => {
109109 const spy = sinon . spy ( )
110110 each ( fixture , spy )
111111 expect ( spy ) . to . have . been . calledThrice
112112 } )
113113
114- it ( 'passes the value, index and collection to the callback' , ( ) => {
114+ it ( 'should pass the value, index and collection to the callback' , ( ) => {
115115 let _value , _index , _collection
116116 each ( fixture , ( value , index , collection ) => {
117117 _value = value
0 commit comments