|
|
|
|
@ -6,7 +6,14 @@ RSpec.describe Form::Sales::Questions::Buyer1IncomeKnown, type: :model do
|
|
|
|
|
|
|
|
|
|
let(:question_id) { nil } |
|
|
|
|
let(:question_definition) { nil } |
|
|
|
|
let(:page) { instance_double(Form::Page, subsection: instance_double(Form::Subsection, form: instance_double(Form, start_date: collection_start_date_for_year(current_collection_start_year)))) } |
|
|
|
|
let(:page) { instance_double(Form::Page) } |
|
|
|
|
let(:subsection) { instance_double(Form::Subsection) } |
|
|
|
|
let(:form) { instance_double(Form, start_date: current_collection_start_date) } |
|
|
|
|
|
|
|
|
|
before do |
|
|
|
|
allow(page).to receive(:subsection).and_return(subsection) |
|
|
|
|
allow(subsection).to receive(:form).and_return(form) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "has correct page" do |
|
|
|
|
expect(question.page).to eq(page) |
|
|
|
|
|