Created
September 16, 2013 21:47
-
-
Save csaunders/6587038 to your computer and use it in GitHub Desktop.
The way I try to drive my TDD
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
class MyFancy | |
end | |
describe "MyFancy" do | |
it "should be able to be very fancy" | |
it "should be possible to set my level of fancy" | |
it "should add a number of exclamation points equal to the fancy level" | |
it "should increase the fancy level by 1 when promoting" | |
it "should decrease the fancy level by 1 when demoting" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment