Guest User

Untitled

a guest
Apr 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. describe "Test some object with pending tests" do
  2. it "should make sure 2 + 2 = 4" do
  3. 4.should == (2 + 2)
  4. end
  5.  
  6. it "should follow the rules of basic arithmetic" do
  7. 4.should be < 5
  8. 9.should_not == 76
  9.  
  10. pending "need to alter the rules of the universe to make this happen" do
  11. 3.should == (1 + 1)
  12. end
  13. end
  14. end
Add Comment
Please, Sign In to add comment