diff --git a/app/controllers/questions/adopted_child_controller.rb b/app/controllers/questions/adopted_child_controller.rb index 439fbf6034..502541d6f6 100644 --- a/app/controllers/questions/adopted_child_controller.rb +++ b/app/controllers/questions/adopted_child_controller.rb @@ -2,10 +2,8 @@ module Questions class AdoptedChildController < QuestionsController include AuthenticatedClientConcern - def self.show?(intake) - intake.had_dependents_yes? - end + def self.show?(intake) = false layout "yes_no_question" end -end \ No newline at end of file +end diff --git a/app/controllers/questions/homebuyer_credit_controller.rb b/app/controllers/questions/homebuyer_credit_controller.rb index a692219dc4..2e85727960 100644 --- a/app/controllers/questions/homebuyer_credit_controller.rb +++ b/app/controllers/questions/homebuyer_credit_controller.rb @@ -4,9 +4,7 @@ class HomebuyerCreditController < QuestionsController layout "yes_no_question" - def self.show?(intake) - intake.ever_owned_home_yes? - end + def self.show?(intake) = false private diff --git a/app/lib/navigation/gyr_question_navigation.rb b/app/lib/navigation/gyr_question_navigation.rb index d8466dbc4f..d9ef3ff461 100644 --- a/app/lib/navigation/gyr_question_navigation.rb +++ b/app/lib/navigation/gyr_question_navigation.rb @@ -80,7 +80,6 @@ class GyrQuestionNavigation # Dependent related questions Questions::DependentCareController, - Questions::AdoptedChildController, # Student questions Questions::StudentController, @@ -130,7 +129,6 @@ class GyrQuestionNavigation Questions::EverOwnedHomeController, Questions::SoldHomeController, Questions::MortgageInterestController, - Questions::HomebuyerCreditController, # Miscellaneous Questions::DisasterLossController, diff --git a/spec/controllers/questions/homebuyer_credit_controller_spec.rb b/spec/controllers/questions/homebuyer_credit_controller_spec.rb index 5d55e25d4b..5da57d256d 100644 --- a/spec/controllers/questions/homebuyer_credit_controller_spec.rb +++ b/spec/controllers/questions/homebuyer_credit_controller_spec.rb @@ -1,8 +1,9 @@ require "rails_helper" RSpec.describe Questions::HomebuyerCreditController do - describe ".show?" do - it_behaves_like :a_show_method_dependent_on_ever_owned_home - end + # This controller was removed for TY 2024 + # describe ".show?" do + # it_behaves_like :a_show_method_dependent_on_ever_owned_home + # end end diff --git a/spec/features/web_intake/new_joint_filers_spec.rb b/spec/features/web_intake/new_joint_filers_spec.rb index e798ed6718..cff6e888e8 100644 --- a/spec/features/web_intake/new_joint_filers_spec.rb +++ b/spec/features/web_intake/new_joint_filers_spec.rb @@ -270,10 +270,6 @@ def intake_up_to_documents expect(page).to have_selector("h1", text: "In #{current_tax_year}, did you or your spouse pay any child or dependent care expenses?") end click_on "Yes" - screenshot_after do - expect(page).to have_selector("h1", text: "In #{current_tax_year}, did you or your spouse adopt a child?") - end - click_on "Yes" # Student questions screenshot_after do diff --git a/spec/features/web_intake/new_single_filer_spec.rb b/spec/features/web_intake/new_single_filer_spec.rb index db8e5ae362..bb785755b0 100644 --- a/spec/features/web_intake/new_single_filer_spec.rb +++ b/spec/features/web_intake/new_single_filer_spec.rb @@ -207,8 +207,6 @@ def intake_after_triage_up_to_documents(intake) click_on "No" expect(page).to have_selector("h1", text: "In #{current_tax_year}, did you pay any mortgage interest?") click_on "No" - expect(page).to have_selector("h1", text: "Did you receive the First Time Homebuyer Credit in 2008?") - click_on "Yes" # Miscellaneous expect(intake.reload.current_step).to end_with("/questions/disaster-loss")