aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/sql/unit/relations/project_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/engines/sql/unit/relations/project_spec.rb')
-rw-r--r--spec/engines/sql/unit/relations/project_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/engines/sql/unit/relations/project_spec.rb b/spec/engines/sql/unit/relations/project_spec.rb
index e73c7775a1..b5d2d33d4b 100644
--- a/spec/engines/sql/unit/relations/project_spec.rb
+++ b/spec/engines/sql/unit/relations/project_spec.rb
@@ -10,7 +10,7 @@ module Arel
describe '#to_sql' do
describe 'when given an attribute' do
it "manufactures sql with a limited select clause" do
- sql = Project.new(@relation, @attribute).to_sql
+ sql = Project.new(@relation, [@attribute]).to_sql
adapter_is :mysql do
sql.should be_like(%Q{
@@ -37,11 +37,11 @@ module Arel
describe 'when given a relation' do
before do
- @scalar_relation = Project.new(@relation, @relation[:name])
+ @scalar_relation = Project.new(@relation, [@relation[:name]])
end
it "manufactures sql with scalar selects" do
- sql = Project.new(@relation, @scalar_relation).to_sql
+ sql = Project.new(@relation, [@scalar_relation]).to_sql
adapter_is :mysql do
sql.should be_like(%Q{
@@ -65,7 +65,7 @@ module Arel
describe 'when given a string' do
it "passes the string through to the select clause" do
- sql = Project.new(@relation, 'asdf').to_sql
+ sql = Project.new(@relation, ['asdf']).to_sql
adapter_is :mysql do
sql.should be_like(%Q{