Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
RSpec.describe LocalAuthority, type: :model do
|
|
|
|
describe "ons code mapping" do
|
|
|
|
let(:form) { Form.new("spec/fixtures/forms/2021_2022.json", "2021_2022") }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(FormHandler.instance).to receive(:current_form).and_return(form)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "maps ONS code to local authority names" do
|
|
|
|
expect(described_class.ons_code_mappings).to be_a(Hash)
|
|
|
|
expect(described_class.ons_code_mappings["E07000178"]).to eq("Oxford")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|