Sha256: fc3380b1c03c414d398a4f4083aa4f8fac7621d3bb5eb3e6ab4d2bbfd79cb782

Contents?: true

Size: 836 Bytes

Versions: 4

Compression:

Stored size: 836 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')

RSpec.describe GovKit::CA::PostalCode::Strategy::LiberalCa do
  describe '#electoral_districts' do
    it 'should return the electoral districts within a postal code' do
      EXPECTATIONS[:liberal_ca].each do |postal_code,electoral_districts|
        expect(GovKit::CA::PostalCode::Strategy::LiberalCa.new(postal_code).electoral_districts).to eq(electoral_districts)
      end
    end

    it 'should return false if a postal code contains no electoral districts' do
      expect(GovKit::CA::PostalCode::Strategy::LiberalCa.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::LiberalCa.new('X1B1B1').electoral_districts).to eq(false)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
govkit-ca-0.0.16 spec/liberal_ca_spec.rb
govkit-ca-0.0.15 spec/liberal_ca_spec.rb
govkit-ca-0.0.14 spec/liberal_ca_spec.rb
govkit-ca-0.0.13 spec/liberal_ca_spec.rb