From a33ab1b34e74c3b1d6f3bae4a2477527e5f8ca55 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 12 Mar 2010 17:31:45 -0800 Subject: Move the relation "integration" specs to specs/relations --- spec/relations/relation_spec.rb | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 spec/relations/relation_spec.rb (limited to 'spec/relations') diff --git a/spec/relations/relation_spec.rb b/spec/relations/relation_spec.rb new file mode 100644 index 0000000000..808ddf1444 --- /dev/null +++ b/spec/relations/relation_spec.rb @@ -0,0 +1,31 @@ +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, nil, 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 \ No newline at end of file -- cgit v1.2.3