aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-06-28 17:17:56 -0400
committerJosé Valim <jose.valim@gmail.com>2010-06-29 01:18:20 +0200
commit40e87ac66912b06c31c98b057a49c64f5555dd99 (patch)
treeba71118993dfb0043d3ab0a75b661bc76ab5ee99 /activerecord/test/cases
parentf8011e67b002990e1c25550c161ab0af6af6620f (diff)
downloadrails-40e87ac66912b06c31c98b057a49c64f5555dd99.tar.gz
rails-40e87ac66912b06c31c98b057a49c64f5555dd99.tar.bz2
rails-40e87ac66912b06c31c98b057a49c64f5555dd99.zip
with_exclusive_scope does not work properly if ARel is passed. It does work nicely if hash is passed. Blow up if user is attempting it pass ARel to with_exclusive_scope.
[#3838 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/method_scoping_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/cases/method_scoping_test.rb b/activerecord/test/cases/method_scoping_test.rb
index 6cd42ff936..178562eb9b 100644
--- a/activerecord/test/cases/method_scoping_test.rb
+++ b/activerecord/test/cases/method_scoping_test.rb
@@ -283,6 +283,12 @@ class NestedScopingTest < ActiveRecord::TestCase
end
end
+ def test_with_exclusive_scope_with_relation
+ assert_raise(ArgumentError) do
+ Developer.all_johns
+ end
+ end
+
def test_append_conditions
Developer.send(:with_scope, :find => { :conditions => "name = 'David'" }) do
Developer.send(:with_scope, :find => { :conditions => 'salary = 80000' }) do