Created
June 12, 2013 20:39
-
-
Save cored/5768920 to your computer and use it in GitHub Desktop.
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 '#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