Skip to content

Instantly share code, notes, and snippets.

@mattwynne
Created December 3, 2009 18:59
Show Gist options
  • Save mattwynne/248432 to your computer and use it in GitHub Desktop.
Save mattwynne/248432 to your computer and use it in GitHub Desktop.
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