Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created June 10, 2010 11:37
Show Gist options
  • Save ku1ik/432864 to your computer and use it in GitHub Desktop.
Save ku1ik/432864 to your computer and use it in GitHub Desktop.
require "bundler"
Bundler.setup
require "rspec"
describe "Foo" do
before :all do
@project = 123
end
describe "me" do
it "should be there" do
@project.should == 123
end
end
describe "me too" do
it "should be there" do
@project.should == 123
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment