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.
66 lines
1.9 KiB
66 lines
1.9 KiB
require "rails_helper" |
|
|
|
RSpec.describe Form::Sales::Subsections::OutrightSale, type: :model do |
|
subject(:outright_sale) { described_class.new(subsection_id, subsection_definition, section) } |
|
|
|
let(:subsection_id) { nil } |
|
let(:subsection_definition) { nil } |
|
let(:section) { instance_double(Form::Sales::Sections::SaleInformation) } |
|
|
|
it "has correct section" do |
|
expect(outright_sale.section).to eq(section) |
|
end |
|
|
|
it "has correct pages" do |
|
expect(outright_sale.pages.map(&:id)).to eq( |
|
%w[ |
|
purchase_price_outright_sale |
|
about_price_outright_sale_value_check |
|
mortgage_used_outright_sale |
|
outright_sale_mortgage_used_mortgage_value_check |
|
mortgage_amount_outright_sale |
|
outright_sale_mortgage_amount_mortgage_value_check |
|
mortgage_lender_outright_sale |
|
mortgage_lender_other_outright_sale |
|
mortgage_length_outright_sale |
|
extra_borrowing_outright_sale |
|
about_deposit_outright_sale |
|
outright_sale_deposit_value_check |
|
leasehold_charges_outright_sale |
|
monthly_charges_outright_sale_value_check |
|
], |
|
) |
|
end |
|
|
|
it "has the correct id" do |
|
expect(outright_sale.id).to eq("outright_sale") |
|
end |
|
|
|
it "has the correct label" do |
|
expect(outright_sale.label).to eq("Outright sale") |
|
end |
|
|
|
it "has the correct depends_on" do |
|
expect(outright_sale.depends_on).to eq([ |
|
{ |
|
"ownershipsch" => 3, "setup_completed?" => true |
|
}, |
|
]) |
|
end |
|
|
|
context "when it is a outright sale" do |
|
let(:log) { FactoryBot.create(:sales_log, ownershipsch: 3) } |
|
|
|
it "is displayed in tasklist" do |
|
expect(outright_sale.displayed_in_tasklist?(log)).to eq(true) |
|
end |
|
end |
|
|
|
context "when it is not a outright sale" do |
|
let(:log) { FactoryBot.create(:sales_log, ownershipsch: 2) } |
|
|
|
it "is displayed in tasklist" do |
|
expect(outright_sale.displayed_in_tasklist?(log)).to eq(false) |
|
end |
|
end |
|
end
|
|
|