aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_activerecord_compat.rb
diff options
context:
space:
mode:
authorRyan Davis <ryand-ruby@zenspider.com>2010-10-18 16:36:49 -0700
committerRyan Davis <ryand-ruby@zenspider.com>2010-10-18 16:36:49 -0700
commita2cee877ec890962d302f24caf99b6ae1de4801f (patch)
tree06bd31f9bd9bd728c35a50b45452eccd48d2e3e6 /test/test_activerecord_compat.rb
parent31f61b822d28a3cdb56e35c73c5102e5e39f81a5 (diff)
downloadrails-a2cee877ec890962d302f24caf99b6ae1de4801f.tar.gz
rails-a2cee877ec890962d302f24caf99b6ae1de4801f.tar.bz2
rails-a2cee877ec890962d302f24caf99b6ae1de4801f.zip
got rid of retarded check method. down with rspec
Diffstat (limited to 'test/test_activerecord_compat.rb')
-rw-r--r--test/test_activerecord_compat.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_activerecord_compat.rb b/test/test_activerecord_compat.rb
index b70887e36c..74a59adbd6 100644
--- a/test/test_activerecord_compat.rb
+++ b/test/test_activerecord_compat.rb
@@ -9,7 +9,7 @@ module Arel
manager.where table[:id].eq 1
manager.where table[:name].eq 'Aaron'
- check manager.wheres.map { |x|
+ manager.wheres.map { |x|
x.value
}.join(', ').must_equal "\"users\".\"id\" = 1, \"users\".\"name\" = 'Aaron'"
end