1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/spec/relations/relation_spec.rb
2010-05-26 18:15:21 -04:00

31 lines
723 B
Ruby

require 'spec_helper'
describe "Arel" do
before :all do
@engine = Arel::Testing::Engine.new
@relation = Arel::Model.build do |r|
r.engine @engine
r.attribute :id, Arel::Attributes::Integer
r.attribute :name, Arel::Attributes::String
r.attribute :age, Arel::Attributes::Integer
end
end
describe "Relation" do
before :all do
@expected = (1..20).map { |i| @relation.insert([i, "Name#{i}", 2 * i]) }
end
it_should_behave_like 'A Relation'
end
describe "Relation" do
describe "#insert" do
it "inserts the row into the engine" do
@relation.insert([1, 'Foo', 10])
@engine.rows.should == [[1, 'Foo', 10]]
end
end
end
end