Sha256: b2ce0085cc0f9295338f5ea214a0f382f27b7ab3b2f891d1328f1fe5500b7c27

Contents?: true

Size: 955 Bytes

Versions: 26

Compression:

Stored size: 955 Bytes

Contents

module Shoulda
  module Matchers
    module ActiveModel
      module NumericalityMatchers
        # @private
        class OnlyIntegerMatcher < NumericTypeMatcher
          NON_INTEGER_VALUE = 0.1

          def simple_description
            description = ''

            if expects_strict?
              description << ' strictly'
            end

            description + "disallow :#{attribute} from being a decimal number"
          end

          def allowed_type_name
            'integer'
          end

          def diff_to_compare
            1
          end

          protected

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

          def disallowed_value
            if @numeric_type_matcher.given_numeric_column?
              NON_INTEGER_VALUE
            else
              NON_INTEGER_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/only_integer_matcher.rb
shoulda-matchers-6.3.1 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-6.3.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-6.2.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-6.1.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-6.0.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-5.3.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-5.2.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-5.1.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-5.0.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-5.0.0.rc1 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.5.1 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.5.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.4.1 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.4.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.3.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.2.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.1.2 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.1.1 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb
shoulda-matchers-4.1.0 lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb