class Shoulda::Matchers::ActiveRecord::AssociationMatchers::OptionVerifier
Constants
- RELATION_OPTIONS
Attributes
reflector[R]
Public Class Methods
new(reflector)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 12 def initialize(reflector) @reflector = reflector end
Public Instance Methods
actual_value_for(name)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 32 def actual_value_for(name) if RELATION_OPTIONS.include?(name) actual_value_for_relation_clause(name) else method_name = "actual_value_for_#{name}" if respond_to?(method_name, true) __send__(method_name) else reflection.options[name] end end end
correct_for_boolean?(name, expected_value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 20 def correct_for_boolean?(name, expected_value) correct_for?(:boolean, name, expected_value) end
correct_for_hash?(name, expected_value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 24 def correct_for_hash?(name, expected_value) correct_for?(:hash, name, expected_value) end
correct_for_relation_clause?(name, expected_value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 28 def correct_for_relation_clause?(name, expected_value) correct_for?(:relation_clause, name, expected_value) end
correct_for_string?(name, expected_value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 16 def correct_for_string?(name, expected_value) correct_for?(:string, name, expected_value) end
Private Instance Methods
actual_value_for_class_name()
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 86 def actual_value_for_class_name reflector.associated_class end
actual_value_for_relation_clause(name)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 82 def actual_value_for_relation_clause(name) reflector.extract_relation_clause_from(reflector.association_relation, name) end
correct_for?(*args)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 49 def correct_for?(*args) expected_value, name, type = args.reverse if expected_value.nil? true else expected_value = type_cast(type, expected_value_for(name, expected_value)) actual_value = type_cast(type, actual_value_for(name)) expected_value == actual_value end end
expected_value_for(name, value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 69 def expected_value_for(name, value) if RELATION_OPTIONS.include?(name) expected_value_for_relation_clause(name, value) else value end end
expected_value_for_relation_clause(name, value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 77 def expected_value_for_relation_clause(name, value) relation = reflector.build_relation_with_clause(name, value) reflector.extract_relation_clause_from(relation, name) end
type_cast(type, value)
click to toggle source
# File lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb, line 60 def type_cast(type, value) case type when :string, :relation_clause then value.to_s when :boolean then !!value when :hash then Hash(value).stringify_keys else value end end