Sha256: bcaff631c6f01d6da639dfa61c5457ffe2a5e6d8173356e02acb0f21d350ac98
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') class GovKit::CA::PostalCode::Strategy::LiberalCa describe GovKit::CA::PostalCode::Strategy::LiberalCa do describe '#electoral_districts' do it 'should return the electoral districts within a postal code' do { 'G0C2Y0' => [24019], 'T5S2B9' => [48015, 48017], # differs from elections.ca, ndp.ca 'K0A1K0' => [35012, 35025, 35040, 35052, 35063, 35064, 35087], }.each do |postal_code,electoral_districts| GovKit::CA::PostalCode::Strategy::LiberalCa.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::LiberalCa.new('H0H0H0').electoral_districts.should be_false end it 'should return false if a postal code does not exist' do GovKit::CA::PostalCode::Strategy::LiberalCa.new('X1B1B1').electoral_districts.should be_false end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
govkit-ca-0.0.2 | spec/liberal_ca_spec.rb |