aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/forbidden_attributes_protection_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/test/cases/forbidden_attributes_protection_test.rb')
-rw-r--r--activemodel/test/cases/forbidden_attributes_protection_test.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activemodel/test/cases/forbidden_attributes_protection_test.rb b/activemodel/test/cases/forbidden_attributes_protection_test.rb
index d3088b4fc2..680f222a30 100644
--- a/activemodel/test/cases/forbidden_attributes_protection_test.rb
+++ b/activemodel/test/cases/forbidden_attributes_protection_test.rb
@@ -1,5 +1,5 @@
require 'cases/helper'
-require 'models/mass_assignment_specific'
+require 'models/account'
class ActiveModelMassUpdateProtectionTest < ActiveSupport::TestCase
test "forbidden attributes cannot be used for mass updating" do
@@ -8,7 +8,7 @@ class ActiveModelMassUpdateProtectionTest < ActiveSupport::TestCase
define_method(:permitted?) { false }
end
assert_raises(ActiveModel::ForbiddenAttributes) do
- SpecialPerson.new.sanitize_for_mass_assignment(params)
+ Account.new.sanitize_for_mass_assignment(params)
end
end
@@ -19,14 +19,14 @@ class ActiveModelMassUpdateProtectionTest < ActiveSupport::TestCase
end
assert_nothing_raised do
assert_equal({ "a" => "b" },
- SpecialPerson.new.sanitize_for_mass_assignment(params))
+ Account.new.sanitize_for_mass_assignment(params))
end
end
test "regular attributes should still be allowed" do
assert_nothing_raised do
assert_equal({ a: "b" },
- SpecialPerson.new.sanitize_for_mass_assignment(a: "b"))
+ Account.new.sanitize_for_mass_assignment(a: "b"))
end
end
end