diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-08-12 15:40:58 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-08-12 15:40:58 -0700 |
commit | d827d6e9ee10fa0906b7b3cfd191e6f9ac5d6b08 (patch) | |
tree | 7ed24e39bc417a0ba6c2f344cc6b616c35c2a8e0 /spec/arel | |
parent | 199d17b2dbb56000098a0372f0c64ce0aa3711ce (diff) | |
download | rails-d827d6e9ee10fa0906b7b3cfd191e6f9ac5d6b08.tar.gz rails-d827d6e9ee10fa0906b7b3cfd191e6f9ac5d6b08.tar.bz2 rails-d827d6e9ee10fa0906b7b3cfd191e6f9ac5d6b08.zip |
to_sql visitor started
Diffstat (limited to 'spec/arel')
-rw-r--r-- | spec/arel/attributes/attribute_spec.rb | 10 | ||||
-rw-r--r-- | spec/arel/table_spec.rb | 8 |
2 files changed, 18 insertions, 0 deletions
diff --git a/spec/arel/attributes/attribute_spec.rb b/spec/arel/attributes/attribute_spec.rb index 5599bb7b51..ef0e0787fa 100644 --- a/spec/arel/attributes/attribute_spec.rb +++ b/spec/arel/attributes/attribute_spec.rb @@ -13,5 +13,15 @@ module Arel end end end + + describe 'equality' do + describe '#to_sql' do + it 'should produce sql' do + table = Table.new :users + condition = table['id'].eq 1 + condition.to_sql.should == '"users"."id" = 1' + end + end + end end end diff --git a/spec/arel/table_spec.rb b/spec/arel/table_spec.rb index c52a111489..be153438c4 100644 --- a/spec/arel/table_spec.rb +++ b/spec/arel/table_spec.rb @@ -14,6 +14,14 @@ module Arel end end + it "should have a name" do + @relation.name.should == :users + end + + it "should have an engine" do + @relation.engine.should == Table.engine + end + describe '[]' do describe 'when given a', Symbol do it "manufactures an attribute if the symbol names an attribute within the relation" do |