Object
@private
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 104 def allow_destroy(allow_destroy) @options[:allow_destroy] = allow_destroy self end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 137 def description description = "accepts_nested_attributes_for :#{@name}" if @options.key?(:allow_destroy) description += " allow_destroy => #{@options[:allow_destroy]}" end if @options.key?(:limit) description += " limit => #{@options[:limit]}" end if @options.key?(:update_only) description += " update_only => #{@options[:update_only]}" end description end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 127 def failure_message "Expected #{expectation} (#{@problem})" end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 132 def failure_message_when_negated "Did not expect #{expectation}" end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 109 def limit(limit) @options[:limit] = limit self end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 162 def allow_destroy_correct? failure_message = "#{should_or_should_not(@options[:allow_destroy])} allow destroy" verify_option_is_correct(:allow_destroy, failure_message) end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 190 def config model_config[@name] end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 153 def exists? if config true else @problem = 'is not declared' false end end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 202 def expectation "#{model_class.name} to accept nested attributes for #{@name}" end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 167 def limit_correct? failure_message = "limit should be #{@options[:limit]}, got #{config[:limit]}" verify_option_is_correct(:limit, failure_message) end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 198 def model_class @subject.class end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 194 def model_config model_class.nested_attributes_options end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 206 def should_or_should_not(value) if value 'should' else 'should not' end end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 172 def update_only_correct? failure_message = "#{should_or_should_not(@options[:update_only])} be update only" verify_option_is_correct(:update_only, failure_message) end
# File lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb, line 177 def verify_option_is_correct(option, failure_message) if @options.key?(option) if @options[option] == config[option] true else @problem = failure_message false end else true end end
Generated with the Darkfish Rdoc Generator 2.