From cc5df996cb9eeadc30040f3ab79e20f125d18b71 Mon Sep 17 00:00:00 2001 From: Samuel Young Date: Tue, 31 Mar 2026 15:54:23 +0100 Subject: [PATCH] CLDC-4362: Add 'Don't know' to Q70 still serving (#3286) * CLDC-4362: Add 'Don't know' to Q70 still serving * CLDC-4362: Code don't know as 9 in 2026 --- app/models/form/sales/questions/buyer_still_serving.rb | 2 ++ spec/models/form/sales/questions/buyer_still_serving_spec.rb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/models/form/sales/questions/buyer_still_serving.rb b/app/models/form/sales/questions/buyer_still_serving.rb index 876cc91af..fc7b9fcb2 100644 --- a/app/models/form/sales/questions/buyer_still_serving.rb +++ b/app/models/form/sales/questions/buyer_still_serving.rb @@ -13,6 +13,8 @@ class Form::Sales::Questions::BuyerStillServing < ::Form::Question "4" => { "value" => "Yes" }, "5" => { "value" => "No - they left up to and including 2 years ago" }, "6" => { "value" => "No - they left more than 2 years ago" }, + "divider" => { "value" => true }, + "9" => { "value" => "Don’t know" }, }.freeze else { diff --git a/spec/models/form/sales/questions/buyer_still_serving_spec.rb b/spec/models/form/sales/questions/buyer_still_serving_spec.rb index 137c95d4c..4b89879f6 100644 --- a/spec/models/form/sales/questions/buyer_still_serving_spec.rb +++ b/spec/models/form/sales/questions/buyer_still_serving_spec.rb @@ -48,6 +48,8 @@ RSpec.describe Form::Sales::Questions::BuyerStillServing, type: :model do "4" => { "value" => "Yes" }, "5" => { "value" => "No - they left up to and including 2 years ago" }, "6" => { "value" => "No - they left more than 2 years ago" }, + "divider" => { "value" => true }, + "9" => { "value" => "Don’t know" }, }) end end