diff options
author | Bryan Helmkamp <bryan@brynary.com> | 2009-05-17 15:47:10 -0400 |
---|---|---|
committer | Bryan Helmkamp <bryan@brynary.com> | 2009-05-17 15:47:10 -0400 |
commit | 07833d39c2885a5cddf38eeb860d79353c0f447b (patch) | |
tree | 5312d3ab6eefba0c936bb3b9a7bf2e879899af2e /spec/arel/engines | |
parent | 20b28b441b651d0404d64049253898c061a039be (diff) | |
download | rails-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/arel/engines')
-rw-r--r-- | spec/arel/engines/memory/unit/relations/insert_spec.rb | 28 |
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 |