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.
17 lines
515 B
17 lines
515 B
3 years ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe RentPeriod, type: :model do
|
||
|
describe "rent period 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 rent period id to display names" do
|
||
|
expect(described_class.rent_period_mappings).to be_a(Hash)
|
||
|
expect(described_class.rent_period_mappings["2"]).to eq({ "value" => "Weekly for 52 weeks" })
|
||
|
end
|
||
|
end
|
||
|
end
|