aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/select_core_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/nodes/select_core_spec.rb')
-rw-r--r--spec/arel/nodes/select_core_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/arel/nodes/select_core_spec.rb b/spec/arel/nodes/select_core_spec.rb
index cf717a3904..30927abea6 100644
--- a/spec/arel/nodes/select_core_spec.rb
+++ b/spec/arel/nodes/select_core_spec.rb
@@ -13,11 +13,11 @@ describe Arel::Nodes::SelectCore do
o.should_receive(:clone).and_return("#{o}#{j}")
end
end
-
+
dolly = core.clone
- dolly.froms.should == %w[a0 b1 c2]
- dolly.projections.should == %w[d0 e1 f2]
- dolly.wheres.should == %w[g0 h1 i2]
+ check dolly.froms.should == %w[a0 b1 c2]
+ check dolly.projections.should == %w[d0 e1 f2]
+ check dolly.wheres.should == %w[g0 h1 i2]
end
end
end