From d3b2596884d884b72d50de2b7ced6097df670736 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Wed, 9 Feb 2011 11:50:53 -0800 Subject: use parenthesis so limit works on all dbs --- activerecord/test/cases/base_test.rb | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index 5b162f4f6f..ef6b741acd 100644 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -94,13 +94,11 @@ class BasicsTest < ActiveRecord::TestCase Topic.limit("1, 7 procedure help()").all end end - - unless current_adapter?(:MysqlAdapter) - def test_limit_should_allow_sql_literal - assert_equal 1, Topic.limit(Arel.sql('2-1')).all.length - end + + def test_limit_should_allow_sql_literal + assert_equal 1, Topic.limit(Arel.sql('(2 - 1)')).all.length end - + def test_select_symbol topic_ids = Topic.select(:id).map(&:id).sort assert_equal Topic.find(:all).map(&:id).sort, topic_ids -- cgit v1.2.3