Sha256: 64503b4ab102b2482cc32216ecd853120e348f23416a8fafbaf67e0e4039c997
Contents?: true
Size: 763 Bytes
Versions: 2
Compression:
Stored size: 763 Bytes
Contents
require 'spec_helper' require 'remarkable/active_record' describe Remarkable::ActiveRecord::Matchers::ValidateAsUsaTelephoneMatcher do context "on a attribute which validates telephone" do it "should require a valid telephone" do @user = EnUser.new(:telephone => '123456') @user.should validate_as_usa_telephone(:telephone) end it "should allow a nil value" do @user = EnUser.new(:telephone => nil) @user.should validate_as_usa_telephone(:telephone) end end context "on a attribute which not validates telephone" do before do @user = Admin.new(:telephone => '123456') end it "should not require a valid telephone" do @user.should_not validate_as_usa_telephone(:telephone) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
validates_telephone-0.2.1 | spec/remarkable/validate_as_usa_telephone_matcher_spec.rb |
validates_telephone-0.2.0 | spec/remarkable/validate_as_usa_telephone_matcher_spec.rb |