Skip to content

Instantly share code, notes, and snippets.

@csaunders
Created September 16, 2013 21:47
Show Gist options
  • Save csaunders/6587038 to your computer and use it in GitHub Desktop.
Save csaunders/6587038 to your computer and use it in GitHub Desktop.
The way I try to drive my TDD
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