aboutsummaryrefslogtreecommitdiffstats
path: root/spec/sql
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-07-30 14:47:37 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-07-30 14:47:37 -0700
commitbef0d30e30b99c8e56325645a9f643b60ce3dff9 (patch)
tree98481edd298a8a86cc6aaa7356e46f0fbc0ba091 /spec/sql
parent19c5a95f1093653d2628dfb2f53637b0425dbba4 (diff)
downloadrails-bef0d30e30b99c8e56325645a9f643b60ce3dff9.tar.gz
rails-bef0d30e30b99c8e56325645a9f643b60ce3dff9.tar.bz2
rails-bef0d30e30b99c8e56325645a9f643b60ce3dff9.zip
removing Table#== as it is not actually used
Diffstat (limited to 'spec/sql')
-rw-r--r--spec/sql/christener_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/spec/sql/christener_spec.rb b/spec/sql/christener_spec.rb
index d50cb56261..895ec2a9b6 100644
--- a/spec/sql/christener_spec.rb
+++ b/spec/sql/christener_spec.rb
@@ -3,14 +3,6 @@ require 'spec_helper'
module Arel
module Sql
describe "Christener" do
- it "returns the same name with two table objects" do
- christener = Christener.new
- table = Table.new 'users'
- table2 = Table.new 'users'
- christener.name_for(table).should == 'users'
- christener.name_for(table2).should == 'users'
- end
-
it "returns the first name" do
christener = Christener.new
table = Table.new 'users'