Add ROWNUM to test first and last to support Oracle.

This commit is contained in:
Yasuo Honda 2011-09-07 07:40:55 -04:00
parent 2b354fed34
commit 3937d443d6

@ -253,8 +253,8 @@ def test_model_class_responds_to_last_bang
end
def test_first_and_last_with_integer_should_use_sql_limit
assert_sql(/LIMIT 2/) { Topic.first(2).entries }
assert_sql(/LIMIT 5/) { Topic.last(5).entries }
assert_sql(/LIMIT 2|ROWNUM <= 2/) { Topic.first(2).entries }
assert_sql(/LIMIT 5|ROWNUM <= 5/) { Topic.last(5).entries }
end
def test_last_with_integer_and_order_should_keep_the_order