Sha256: 13213afaf521016e67c63f2b87d792cf32cb4d99b3dae87cf46ae80677b86d58

Contents?: true

Size: 1.29 KB

Versions: 114

Compression:

Stored size: 1.29 KB

Contents

module Shoulda # :nodoc:
  module ActiveRecord # :nodoc:
    module Matchers

      class ValidationMatcher # :nodoc:

        attr_reader :failure_message

        def initialize(attribute)
          @attribute = attribute
        end

        def negative_failure_message
          @negative_failure_message || @failure_message
        end

        def matches?(subject)
          @subject = subject
          false
        end

        private

        def allows_value_of(value, message = nil)
          allow = AllowValueMatcher.
            new(value).
            for(@attribute).
            with_message(message)
          if allow.matches?(@subject)
            @negative_failure_message = allow.failure_message
            true
          else
            @failure_message = allow.negative_failure_message
            false
          end
        end

        def disallows_value_of(value, message = nil)
          disallow = AllowValueMatcher.
            new(value).
            for(@attribute).
            with_message(message)
          if disallow.matches?(@subject)
            @failure_message = disallow.negative_failure_message
            false
          else
            @negative_failure_message = disallow.failure_message
            true
          end
        end
      end

    end
  end
end

Version data entries

114 entries across 84 versions & 17 rubygems

Version Path
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb
Flamefork-shoulda-2.10.1 lib/shoulda/active_record/matchers/validation_matcher.rb
Flamefork-shoulda-2.10.2 lib/shoulda/active_record/matchers/validation_matcher.rb
francois-shoulda-2.10.1 lib/shoulda/active_record/matchers/validation_matcher.rb
gnip-gnip-1.1.1 test/lib/shoulda/active_record/matchers/validation_matcher.rb
ratnikov-shoulda-2.9.0.1 lib/shoulda/active_record/matchers/validation_matcher.rb
ratnikov-shoulda-2.9.0.2 lib/shoulda/active_record/matchers/validation_matcher.rb
ratnikov-shoulda-2.9.0.3 lib/shoulda/active_record/matchers/validation_matcher.rb
ratnikov-shoulda-2.9.0 lib/shoulda/active_record/matchers/validation_matcher.rb
rmm5t-shoulda-2.9.1 lib/shoulda/active_record/matchers/validation_matcher.rb
technicalpickles-shoulda-2.10.0 lib/shoulda/active_record/matchers/validation_matcher.rb
thoughtbot-shoulda-2.10.0 lib/shoulda/active_record/matchers/validation_matcher.rb
thoughtbot-shoulda-2.10.1 lib/shoulda/active_record/matchers/validation_matcher.rb
thoughtbot-shoulda-2.9.0 lib/shoulda/active_record/matchers/validation_matcher.rb
thoughtbot-shoulda-2.9.1 lib/shoulda/active_record/matchers/validation_matcher.rb
thoughtbot-shoulda-2.9.2 lib/shoulda/active_record/matchers/validation_matcher.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/shoulda-2.11.3/lib/shoulda/active_record/matchers/validation_matcher.rb