Created
May 13, 2011 11:42
-
-
Save kenglxn/970389 to your computer and use it in GitHub Desktop.
screw unit ex
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('#decrement_luck', function() { | |
it("decrements the luck field by the given amount", function() { | |
man.decrement_luck(3); | |
expect(man.luck()).to(equal, 2) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment