Created
October 14, 2011 13:36
-
-
Save simi/1287123 to your computer and use it in GitHub Desktop.
dsl example
This file contains hidden or 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
| @jane = Factory(:user) | |
| @reward = Factory(:reward, :name => 'Invite friends', :points => 50, :every => 1.day) | |
| @jane.can_achieve?(:invite_friends).should be true | |
| @jane.achieve!(:invite_friends) | |
| @jane.points.should be 50 | |
| @jane.can_achieve?(:invite_friends).should be false | |
| @jane.time_to_unlock(:invite_friends).should be < 1.day |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment