1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/spec/engines/memory/unit/relations/take_spec.rb

27 lines
560 B
Ruby
Raw Normal View History

require 'spec_helper'
module Arel
describe Take do
before do
@relation = Array.new([
[1, 'duck' ],
[2, 'duck' ],
[3, 'goose']
2010-03-12 15:51:20 -05:00
], [[:id, Attributes::Integer], [:name, Attributes::String]])
end
2009-05-17 16:20:40 -04:00
describe '#call' do
it 'removes the rows after the first n' do
@relation \
.take(2) \
.let do |relation|
relation.call.should == [
Row.new(relation, [1, 'duck']),
Row.new(relation, [2, 'duck']),
]
end
end
end
end
2009-05-17 16:20:40 -04:00
end