aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-05-17 15:47:10 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-05-17 15:47:10 -0400
commit07833d39c2885a5cddf38eeb860d79353c0f447b (patch)
tree5312d3ab6eefba0c936bb3b9a7bf2e879899af2e /spec
parent20b28b441b651d0404d64049253898c061a039be (diff)
downloadrails-07833d39c2885a5cddf38eeb860d79353c0f447b.tar.gz
rails-07833d39c2885a5cddf38eeb860d79353c0f447b.tar.bz2
rails-07833d39c2885a5cddf38eeb860d79353c0f447b.zip
basic implementation of in memory insertions
Conflicts: lib/arel/engines/memory/relations.rb
Diffstat (limited to 'spec')
-rw-r--r--spec/arel/engines/memory/unit/relations/insert_spec.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/arel/engines/memory/unit/relations/insert_spec.rb b/spec/arel/engines/memory/unit/relations/insert_spec.rb
new file mode 100644
index 0000000000..4b5e8833a0
--- /dev/null
+++ b/spec/arel/engines/memory/unit/relations/insert_spec.rb
@@ -0,0 +1,28 @@
+require File.join(File.dirname(__FILE__), '..', '..', '..', '..', '..', 'spec_helper')
+
+module Arel
+ describe Insert do
+ before do
+ @relation = Array.new([
+ [1, 'duck' ],
+ [2, 'duck' ],
+ [3, 'goose']
+ ], [:id, :name])
+ end
+
+ describe '#call' do
+ it "manufactures an array of hashes of attributes to values" do
+ @relation \
+ .insert(@relation[:id] => 4, @relation[:name] => 'guinea fowl') \
+ .let do |relation|
+ relation.call.should == [
+ Row.new(relation, [1, 'duck']),
+ Row.new(relation, [2, 'duck']),
+ Row.new(relation, [3, 'goose']),
+ Row.new(relation, [4, 'guinea fowl'])
+ ]
+ end
+ end
+ end
+ end
+end \ No newline at end of file