Sha256: b75c1c4b2ba0d4a9fe615a64d7b1b03ff48561730da442e66bb3738d17908727
Contents?: true
Size: 1.6 KB
Versions: 5
Compression:
Stored size: 1.6 KB
Contents
module Shoulda # :nodoc: module Matchers module ActiveRecord # :nodoc: # Ensures that the attribute cannot be changed once the record has been # created. # # it { should have_readonly_attribute(:password) } # def have_readonly_attribute(value) HaveReadonlyAttributeMatcher.new(value) end class HaveReadonlyAttributeMatcher # :nodoc: def initialize(attribute) @attribute = attribute.to_s end attr_reader :failure_message, :failure_message_when_negated alias failure_message_for_should failure_message alias failure_message_for_should_not failure_message_when_negated def matches?(subject) @subject = subject if readonly_attributes.include?(@attribute) @failure_message_when_negated = "Did not expect #{@attribute} to be read-only" true else if readonly_attributes.empty? @failure_message = "#{class_name} attribute #{@attribute} " << 'is not read-only' else @failure_message = "#{class_name} is making " << "#{readonly_attributes.to_a.to_sentence} " << "read-only, but not #{@attribute}." end false end end def description "make #{@attribute} read-only" end private def readonly_attributes @readonly_attributes ||= (@subject.class.readonly_attributes || []) end def class_name @subject.class.name end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems