Created
December 9, 2014 04:26
-
-
Save jamesdavidson/e7a764fc4a806aa97318 to your computer and use it in GitHub Desktop.
rspec i'm confused
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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