Skip to content

Instantly share code, notes, and snippets.

@jamesdavidson
Created December 9, 2014 04:26
Show Gist options
  • Save jamesdavidson/e7a764fc4a806aa97318 to your computer and use it in GitHub Desktop.
Save jamesdavidson/e7a764fc4a806aa97318 to your computer and use it in GitHub Desktop.
rspec i'm confused
describe 'itself' do
it 'should not work but it does' do
expect(1 > 2)
end
it 'it fails as it should' do
expect(1 > 2).to be(true)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment