spec/conservative_ca_spec.rb in govkit-ca-0.0.12 vs spec/conservative_ca_spec.rb in govkit-ca-0.0.13

- old
+ new

@@ -1,27 +1,7 @@ require File.expand_path(File.dirname(__FILE__) + '/spec_helper') RSpec.describe GovKit::CA::PostalCode::Strategy::ConservativeCa do describe '#electoral_districts' do - it 'should return the electoral districts within a postal code' do - { 'T1P1K1' => [48010], - 'K0A1K0' => [35025, 35052, 35063], - }.each do |postal_code,electoral_districts| - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new(postal_code).electoral_districts).to eq(electoral_districts) - end - end - - it 'should (unfortunately) return false if a postal code is held by another party' do - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new('G0C2Y0').electoral_districts).to eq(false) - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new('T5S2B9').electoral_districts).to eq(false) - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new('B0J2L0').electoral_districts).to eq(false) - end - - it 'should return false if a postal code contains no electoral districts' do - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new('H0H0H0').electoral_districts).to eq(false) - end - - it 'should return false if a postal code does not exist' do - expect(GovKit::CA::PostalCode::Strategy::ConservativeCa.new('X1B1B1').electoral_districts).to eq(false) - end + pending end end