Skip to content

Instantly share code, notes, and snippets.

@cesutherland
Created April 16, 2012 22:34
Show Gist options
  • Save cesutherland/2402093 to your computer and use it in GitHub Desktop.
Save cesutherland/2402093 to your computer and use it in GitHub Desktop.
describe('acme strategies', function () {
var
strategies = ['a', 'b'];
_.each(strategies, function (strategy) {
it('should strategize ' + strategy, function () {
expect(strategy()).toBe(true);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment