Sha256: fcf690f7404abded212ef966e19fa9ddc9b78ccde66ffa4bf160fcbdba79eec6

Contents?: true

Size: 962 Bytes

Versions: 26

Compression:

Stored size: 962 Bytes

Contents

module Shoulda
  module Matchers
    module ActiveModel
      module NumericalityMatchers
        # @private
        class OddNumberMatcher < NumericTypeMatcher
          NON_ODD_NUMBER_VALUE = 2

          def simple_description
            description = ''

            if expects_strict?
              description << 'strictly '
            end

            description +
              "disallow :#{attribute} from being an even number"
          end

          def allowed_type_adjective
            'odd'
          end

          def diff_to_compare
            2
          end

          protected

          def wrap_disallow_value_matcher(matcher)
            matcher.with_message(:odd)
          end

          def disallowed_value
            if @numeric_type_matcher.given_numeric_column?
              NON_ODD_NUMBER_VALUE
            else
              NON_ODD_NUMBER_VALUE.to_s
            end
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
shoulda-matchers-6.4.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-6.3.1 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-6.3.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-6.2.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-6.1.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-6.0.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-5.3.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-5.2.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-5.1.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-5.0.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-5.0.0.rc1 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.5.1 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.5.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.4.1 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.4.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.3.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.2.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.1.2 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.1.1 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb
shoulda-matchers-4.1.0 lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb