Sha256: 25577ef64100175b38c38c719820757814da0c62e01e68f6e015da009b302993

Contents?: true

Size: 1.17 KB

Versions: 17

Compression:

Stored size: 1.17 KB

Contents

# encoding: UTF-8

# Copyright 2012 Twitter, Inc
# http://www.apache.org/licenses/LICENSE-2.0

require 'spec_helper'

include TwitterCldr::Shared

describe PhoneCodes do
  describe "#territories" do
    let(:territories) { PhoneCodes.territories }

    it 'returns an array' do
      territories.should be_instance_of(Array)
    end

    it 'returns symbols' do
      territories.each { |territory| territory.should be_instance_of(Symbol) }
    end

    it 'returns supported territories' do
      territories.should include(:br, :fr, :jp)
    end
  end

  describe '#code_for_territory' do
    let(:code)      { '123' }
    let(:territory) { :br }

    before(:each) { mock(PhoneCodes).resource { { territory => code } } }

    it 'returns phone code for a given territory' do
      PhoneCodes.code_for_territory(territory).should == code
    end

    it 'returns nil if the regex is missing' do
      PhoneCodes.code_for_territory(:foo).should be_nil
    end

    it 'accepts strings' do
      PhoneCodes.code_for_territory(territory.to_s).should == code
    end

    it 'accepts upper-case strings' do
      PhoneCodes.code_for_territory(territory.to_s.upcase).should == code
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
twitter_cldr-3.0.1 spec/shared/phone_codes_spec.rb
twitter_cldr-2.4.3 spec/shared/phone_codes_spec.rb
twitter_cldr-3.0.0 spec/shared/phone_codes_spec.rb
twitter_cldr-3.0.0.beta1 spec/shared/phone_codes_spec.rb
twitter_cldr-2.4.2 spec/shared/phone_codes_spec.rb
twitter_cldr-2.4.1 spec/shared/phone_codes_spec.rb
twitter_cldr-2.4.0 spec/shared/phone_codes_spec.rb
twitter_cldr-2.2.0 spec/shared/phone_codes_spec.rb
twitter_cldr-2.1.1 spec/shared/phone_codes_spec.rb
twitter_cldr-2.1.0 spec/shared/phone_codes_spec.rb
twitter_cldr-2.0.2 spec/shared/phone_codes_spec.rb
twitter_cldr-2.0.1 spec/shared/phone_codes_spec.rb
twitter_cldr-2.0.0 spec/shared/phone_codes_spec.rb
twitter_cldr-1.9.1 spec/shared/phone_codes_spec.rb
twitter_cldr-1.9.0 spec/shared/phone_codes_spec.rb
twitter_cldr-1.8.1 spec/shared/phone_codes_spec.rb
twitter_cldr-1.8.0 spec/shared/phone_codes_spec.rb