Skip to content

Instantly share code, notes, and snippets.

@cored
Created June 12, 2013 20:39
Show Gist options
  • Save cored/5768920 to your computer and use it in GitHub Desktop.
Save cored/5768920 to your computer and use it in GitHub Desktop.
describe '#order_in_line' do
subject { order_in_line }
it { should have(1).keys }
it { should have_key 'Order' }
context 'coerced to [String => Integer] format' do
subject { order_in_line['Order'] }
it { should be_eql 1 }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment