From d71fc65f97118a840fd31d8b1f5d12a6cd08057f Mon Sep 17 00:00:00 2001 From: samyou-softwire Date: Mon, 30 Mar 2026 10:03:17 +0100 Subject: [PATCH] CLDC-4362: Add 'Don't know' to Q70 still serving --- 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..bbb04f118 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 }, + "7" => { "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..aceb0bdb8 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 }, + "7" => { "value" => "Don’t know" }, }) end end