diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-03-10 18:16:07 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2010-03-10 18:16:07 -0300 |
commit | b706f690b611d647aae15a85caa19d167814ae3c (patch) | |
tree | 05a17b2e937f894ea03f3fff535fd62cbc31a025 /spec/arel/engines | |
parent | c03d4bb8e4acac95961a1a9eb9578fa33a47da66 (diff) | |
download | rails-b706f690b611d647aae15a85caa19d167814ae3c.tar.gz rails-b706f690b611d647aae15a85caa19d167814ae3c.tar.bz2 rails-b706f690b611d647aae15a85caa19d167814ae3c.zip |
Arel doesn't has to know if a table or column exists.
Diffstat (limited to 'spec/arel/engines')
-rw-r--r-- | spec/arel/engines/sql/unit/primitives/attribute_spec.rb | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/spec/arel/engines/sql/unit/primitives/attribute_spec.rb b/spec/arel/engines/sql/unit/primitives/attribute_spec.rb index 9f864dd3a1..8daa0d9fd5 100644 --- a/spec/arel/engines/sql/unit/primitives/attribute_spec.rb +++ b/spec/arel/engines/sql/unit/primitives/attribute_spec.rb @@ -9,7 +9,7 @@ module Arel describe '#column' do it "returns the corresponding column in the relation" do - @attribute.column.should == @relation.column_for(@attribute) + @attribute.column.should == @relation.column_for(@attribute) end end @@ -31,6 +31,25 @@ module Arel end end end + + describe 'for an inexistent attribute' do + it "manufactures sql" do + sql = @relation[:does_not_exist].to_sql + + adapter_is :mysql do + sql.should be_like(%Q{`users`.`does_not_exist`}) + end + + adapter_is :oracle do + sql.should be_like(%Q{"USERS"."DOEST_NOT_EXIST"}) + end + + adapter_is_not :mysql, :oracle do + sql.should be_like(%Q{"users"."does_not_exist"}) + end + end + end + end end end |