Skip to content

Instantly share code, notes, and snippets.

@deletosh
Created December 15, 2011 02:06
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 deletosh/1479506 to your computer and use it in GitHub Desktop.
Save deletosh/1479506 to your computer and use it in GitHub Desktop.
SmoothCoffee / using Jasmine
describe "Absolute", ->
xit "should return an absolute number", ->
pos_num = 1; neg_num = -1
expect(absolute(neg_num)).toEqual(pos_num)
xit "should return same number", ->
pos_num = 1; neg_num = -1
expect(absolute(pos_num)).toEqual(pos_num)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment