Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created May 25, 2016 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericelliott/d890917776a274be28c23b9acc655db4 to your computer and use it in GitHub Desktop.
Save ericelliott/d890917776a274be28c23b9acc655db4 to your computer and use it in GitHub Desktop.
range 0-0
test('range of 0 - 0', assert => {
const message = `should return [0].`;
const actual = range(0, 0);
const expected = [0];
assert.same(actual, expected, message);
assert.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment