Created
June 25, 2018 18:30
-
-
Save stalniy/620487453df0073c2b488a82b8820f0d to your computer and use it in GitHub Desktop.
Lazy vars include shared examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('Array', function() { | |
subject(function() { | |
return []; | |
}); | |
includeExamplesFor('Collection'); | |
}); | |
describe('Set', function() { | |
subject(function() { | |
return new Set(); | |
}); | |
includeExamplesFor('Collection'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment