Skip to content

Instantly share code, notes, and snippets.

@jeffrydegrande
Created January 2, 2012 22:47
Show Gist options
  • Save jeffrydegrande/1552484 to your computer and use it in GitHub Desktop.
Save jeffrydegrande/1552484 to your computer and use it in GitHub Desktop.
class Something
end
describe Something do
pending "not yet implemented" do
describe 'something' do
end
end
it "is not implemented", :pending => true
it "is not implemented" do
pending "nope"
end
it "is not implemented"
xit "is not implemented" do
# pending
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment