Skip to content

Instantly share code, notes, and snippets.

@jwhitmire
Created November 23, 2009 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwhitmire/241242 to your computer and use it in GitHub Desktop.
Save jwhitmire/241242 to your computer and use it in GitHub Desktop.
pending snippet 4
describe "Test some object with pending tests" do
it "should make sure 2 + 2 = 4" do
4.should == (2 + 2)
end
it "should follow the rules of basic arithmetic" do
4.should be < 5
9.should_not == 76
pending "need to alter the rules of the universe to make this happen" do
3.should == (1 + 1)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment