aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-07-14 21:17:57 +0530
committerVipul A M <vipulnsward@gmail.com>2013-11-10 11:29:17 +0530
commit9cbfc8a370bf6537a02a2f21e7246dc21ba4cf1f (patch)
treefd353b7936bd77ca2c8b624c31cab6b650b74bca /test
parenta8f6662defe086258814f82dc8acb8d2eeee9842 (diff)
downloadrails-9cbfc8a370bf6537a02a2f21e7246dc21ba4cf1f.tar.gz
rails-9cbfc8a370bf6537a02a2f21e7246dc21ba4cf1f.tar.bz2
rails-9cbfc8a370bf6537a02a2f21e7246dc21ba4cf1f.zip
Remove deprecated calls to `SelectManager#wheres` with no replacement
Diffstat (limited to 'test')
-rw-r--r--test/test_activerecord_compat.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/test_activerecord_compat.rb b/test/test_activerecord_compat.rb
deleted file mode 100644
index d881209610..0000000000
--- a/test/test_activerecord_compat.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'helper'
-
-module Arel
- describe 'activerecord compatibility' do
- describe 'select manager' do
- it 'provides wheres' do
- table = Table.new :users
- manager = Arel::SelectManager.new Table.engine
- manager.where table[:id].eq 1
- manager.where table[:name].eq 'Aaron'
-
- manager.wheres.map { |x|
- x.value
- }.join(', ').must_equal "\"users\".\"id\" = 1, \"users\".\"name\" = 'Aaron'"
- end
- end
- end
-end