Sha256: cba47c500c6567361acbebac8cf42819a53750be1b2bc0679eeec5068c0dd05d
Contents?: true
Size: 1.89 KB
Versions: 91
Compression:
Stored size: 1.89 KB
Contents
require 'test_helper' class AllowMassAssignmentOfMatcherTest < ActiveSupport::TestCase # :nodoc: context "an attribute that is blacklisted from mass-assignment" do setup do define_model :example, :attr => :string do attr_protected :attr end @model = Example.new end should "reject being mass-assignable" do assert_rejects allow_mass_assignment_of(:attr), @model end end context "an attribute that is not whitelisted for mass-assignment" do setup do define_model :example, :attr => :string, :other => :string do attr_accessible :other end @model = Example.new end should "reject being mass-assignable" do assert_rejects allow_mass_assignment_of(:attr), @model end end context "an attribute that is whitelisted for mass-assignment" do setup do define_model :example, :attr => :string do attr_accessible :attr end @model = Example.new end should "accept being mass-assignable" do assert_accepts allow_mass_assignment_of(:attr), @model end end context "an attribute not included in the mass-assignment blacklist" do setup do define_model :example, :attr => :string, :other => :string do attr_protected :other end @model = Example.new end should "accept being mass-assignable" do assert_accepts allow_mass_assignment_of(:attr), @model end end context "an attribute on a class with no protected attributes" do setup do define_model :example, :attr => :string @model = Example.new end should "accept being mass-assignable" do assert_accepts allow_mass_assignment_of(:attr), @model end should "assign a negative failure message" do matcher = allow_mass_assignment_of(:attr) matcher.matches?(@model) assert_not_nil matcher.negative_failure_message end end end
Version data entries
91 entries across 61 versions & 10 rubygems