Skip to content

Instantly share code, notes, and snippets.

@kwstannard
Created June 11, 2014 16:13
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 kwstannard/efa0ae39ea3e66493161 to your computer and use it in GitHub Desktop.
Save kwstannard/efa0ae39ea3e66493161 to your computer and use it in GitHub Desktop.
describe 'ordering' do
let(:herp) { raise 'hi' }
subject { raise 'bye' }
it { should eq(herp) } #=> error 'hi'
it { is_expected.to eq(herp) } #=> error 'bye'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment