Sha256: 33d0ab38dd0765458505e6f937b01b4a6e87c9ba7074f6750447ca900f60ee20

Contents?: true

Size: 888 Bytes

Versions: 2

Compression:

Stored size: 888 Bytes

Contents

require 'remarkable/active_record'

module Remarkable
  module ActiveRecord
    module Matchers
      class ValidateAsUsaTelephoneMatcher < Remarkable::ActiveRecord::Base
        arguments :telephone

        collection_assertions :telephone_valid?, :allow_nil?, :formatted_number?

        protected

        def telephone_valid?
          @subject.telephone = '123456'
          @subject.valid?.errors[:telephone].should == ['is invalid']
        end

        def allow_nil?
          @subject.telephone = nil
          @subject.valid?.errors[:telephone].should == []
        end

        def formatted_number?
          @subject.telephone = '1112223333'
          @subject.valid?.telephone.should == '(111)222-3333'
        end
      end

      def validate_as_usa_telephone(*args, &block)
        ValidateAsUsaTelephoneMatcher.new(*args, &block).spec(self)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
validates_telephone-0.2.1 lib/validates_telephone/remarkable/validate_as_usa_telephone_matcher.rb
validates_telephone-0.2.0 lib/validates_telephone/remarkable/validate_as_usa_telephone_matcher.rb