Created
December 3, 2009 18:59
-
-
Save mattwynne/248432 to your computer and use it in GitHub Desktop.
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
describe "My Test" do | |
before(:all) { puts "Running..."} | |
describe "something" do | |
it "should have a cool name" do | |
"name" | |
end | |
it "should do something" do | |
"me" | |
end | |
end | |
describe "something else" do | |
it "should have a cool name" do | |
"name" | |
end | |
it "should do something" do | |
"me" | |
end | |
end | |
it "should be within the first block" do | |
true | |
end | |
it "should be a second test in the first block" do | |
true | |
end | |
after(:all) { puts "Finished..." } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment