Guest User

Untitled

a guest
May 27th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. require "bundler"
  2. Bundler.setup
  3. require "rspec"
  4.  
  5. describe "Foo" do
  6. before :all do
  7. @project = 123
  8. end
  9.  
  10. describe "me" do
  11. it "should be there" do
  12. @project.should == 123
  13. end
  14. end
  15.  
  16. describe "me too" do
  17. it "should be there" do
  18. @project.should == 123
  19. end
  20. end
  21. end
Add Comment
Please, Sign In to add comment