Sha256: d89e25ed5ae7a3148f559819db4e55e6a74178403824c335cf79a45513e165ec
Contents?: true
Size: 956 Bytes
Versions: 4
Compression:
Stored size: 956 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require 'gov_kit-ca/postal_code/strategy/cbc_ca' describe GovKit::CA::PostalCode::Strategy::CBCCa do describe '#electoral_districts', :broken => true do it 'should return the electoral districts within a postal code' do { 'G0C2Y0' => [24019], 'T5S2B9' => [48015, 48017], 'K0A1K0' => [35025, 35052, 35063, 35064], }.each do |postal_code,electoral_districts| GovKit::CA::PostalCode::Strategy::CBCCa.new(postal_code).electoral_districts.should == electoral_districts end end it 'should return false if a postal code contains no electoral districts' do GovKit::CA::PostalCode::Strategy::CBCCa.new('H0H0H0').electoral_districts.should be_false end it 'should return false if a postal code does not exist' do GovKit::CA::PostalCode::Strategy::CBCCa.new('X1B1B1').electoral_districts.should be_false end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
govkit-ca-0.0.10 | spec/cbc_ca_spec.rb |
govkit-ca-0.0.9 | spec/cbc_ca_spec.rb |
govkit-ca-0.0.8 | spec/cbc_ca_spec.rb |
govkit-ca-0.0.7 | spec/cbc_ca_spec.rb |