aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-27 14:19:59 -0700
committerBryan Helmkamp <bryan@brynary.com>2009-05-17 15:44:12 -0400
commit2fe585328d6a24df310d3e60059c9c7b05b64bac (patch)
tree546895f0729a612ec3e004ee08ddb1b703b43b47 /spec
parentb7f58db57a535806e0cfc3057fbab80ca43b1a53 (diff)
downloadrails-2fe585328d6a24df310d3e60059c9c7b05b64bac.tar.gz
rails-2fe585328d6a24df310d3e60059c9c7b05b64bac.tar.bz2
rails-2fe585328d6a24df310d3e60059c9c7b05b64bac.zip
performing in memory joins
Diffstat (limited to 'spec')
-rw-r--r--spec/arel/engines/memory/unit/relations/join_spec.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/arel/engines/memory/unit/relations/join_spec.rb b/spec/arel/engines/memory/unit/relations/join_spec.rb
new file mode 100644
index 0000000000..920cc55d0a
--- /dev/null
+++ b/spec/arel/engines/memory/unit/relations/join_spec.rb
@@ -0,0 +1,32 @@
+require File.join(File.dirname(__FILE__), '..', '..', '..', '..', '..', 'spec_helper')
+
+module Arel
+ describe Join do
+ before do
+ @relation1 = Array.new([
+ [1, 'duck' ],
+ [2, 'duck' ],
+ [3, 'goose']
+ ], [:id, :name])
+ @relation2 = @relation1.alias
+ @relation3 = @relation1.alias
+ end
+
+ describe InnerJoin do
+ describe '#call' do
+ it 'combines the two tables where the predicate obtains' do
+ @relation1 \
+ .join(@relation2) \
+ .on(@relation1[:id].eq(@relation2[:id])) \
+ .let do |relation|
+ relation.call.should == [
+ Row.new(relation, [1, 'duck', 1, 'duck' ]),
+ Row.new(relation, [2, 'duck', 2, 'duck' ]),
+ Row.new(relation, [3, 'goose', 3, 'goose'])
+ ]
+ end
+ end
+ end
+ end
+ end
+end \ No newline at end of file