spec/unit/axiom/relation/operation/reverse/each_spec.rb in axiom-0.1.0 vs spec/unit/axiom/relation/operation/reverse/each_spec.rb in axiom-0.1.1
- old
+ new
@@ -3,14 +3,14 @@
require 'spec_helper'
describe Relation::Operation::Reverse, '#each' do
subject { object.each { |tuple| yields << tuple } }
- let(:object) { described_class.new(order) }
- let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
- let(:order) { relation.sort_by { |r| r.id } }
- let(:yields) { [] }
+ let(:object) { described_class.new(order) }
+ let(:relation) { Relation.new([[:id, Integer]], [[1], [2], [3]]) }
+ let(:order) { relation.sort_by { |r| r.id } }
+ let(:yields) { [] }
it_should_behave_like 'an #each method'
it 'yields only tuples' do
subject
@@ -21,10 +21,10 @@
subject
yields.each { |tuple| tuple.header.should be(object.header) }
end
it 'yields only tuples with the expected data in reverse order' do
- expect { subject }.to change { yields.dup }.
- from([]).
- to([ [ 3 ], [ 2 ], [ 1 ] ])
+ expect { subject }.to change { yields.dup }
+ .from([])
+ .to([[3], [2], [1]])
end
end