Guest User

Untitled

a guest
Jun 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. describe "NIC-U" do
  2. context "Fall conference" do
  3. it "should be readable" do
  4. "readable".should == "readable"
  5. end
  6.  
  7. it { "readable".should == "readable"}
  8.  
  9. context "readable" do
  10. it { should == "readable" }
  11. end
  12.  
  13. context "rspec" do
  14. class String
  15. def readable?
  16. "rspec" == to_s
  17. end
  18. end
  19. it { should be_readable }
  20. end
  21. end
  22. end
Add Comment
Please, Sign In to add comment