Sha256: 34cad84dcba63db28daaf1f6b3badb487ea09447e231452980679f879bf0ba0a

Contents?: true

Size: 751 Bytes

Versions: 2

Compression:

Stored size: 751 Bytes

Contents

require 'spec_helper'
require 'shoulda-matchers'

describe Shoulda::Matchers::ActiveModel::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/shoulda-matchers/validate_as_usa_telephone_matcher_spec.rb
validates_telephone-0.2.0 spec/shoulda-matchers/validate_as_usa_telephone_matcher_spec.rb