@@ -19,15 +19,15 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
19
19
20
20
context "next_node" do
21
21
should "have a next node of what_loans_are_you_eligible_for? for any response" do
22
- assert_next_node :what_loans_are_you_eligible_for? , for_response : "2023- 2024"
22
+ assert_next_node :what_loans_are_you_eligible_for? , for_response : "2024-2025 "
23
23
end
24
24
end
25
25
end
26
26
27
27
context "question: what_loans_are_you_eligible_for?," do
28
28
setup do
29
29
testing_node :what_loans_are_you_eligible_for?
30
- add_responses when_does_your_course_start? : "2023- 2024"
30
+ add_responses when_does_your_course_start? : "2024-2025 "
31
31
end
32
32
33
33
should "render the question" do
@@ -44,7 +44,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
44
44
context "question: will_you_be_studying_full_or_part_time?," do
45
45
setup do
46
46
testing_node :will_you_be_studying_full_or_part_time?
47
- add_responses when_does_your_course_start? : "2023- 2024" ,
47
+ add_responses when_does_your_course_start? : "2024-2025 " ,
48
48
what_loans_are_you_eligible_for? : "tuition-and-maintenance"
49
49
end
50
50
@@ -62,7 +62,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
62
62
context "question: how_much_are_your_tuition_fees_per_year?," do
63
63
setup do
64
64
testing_node :how_much_are_your_tuition_fees_per_year?
65
- add_responses when_does_your_course_start? : "2023- 2024" ,
65
+ add_responses when_does_your_course_start? : "2024-2025 " ,
66
66
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
67
67
will_you_be_studying_full_or_part_time? : "full-time"
68
68
end
@@ -109,7 +109,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
109
109
context "question: where_will_you_live_while_studying?," do
110
110
setup do
111
111
testing_node :where_will_you_live_while_studying?
112
- add_responses when_does_your_course_start? : "2023- 2024" ,
112
+ add_responses when_does_your_course_start? : "2024-2025 " ,
113
113
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
114
114
will_you_be_studying_full_or_part_time? : "full-time" ,
115
115
how_much_are_your_tuition_fees_per_year? : "9250"
@@ -129,7 +129,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
129
129
context "question: whats_your_household_income?," do
130
130
setup do
131
131
testing_node :whats_your_household_income?
132
- add_responses when_does_your_course_start? : "2023- 2024" ,
132
+ add_responses when_does_your_course_start? : "2024-2025 " ,
133
133
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
134
134
will_you_be_studying_full_or_part_time? : "full-time" ,
135
135
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -156,7 +156,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
156
156
context "question: how_many_credits_will_you_study?" do
157
157
setup do
158
158
testing_node :how_many_credits_will_you_study?
159
- add_responses when_does_your_course_start? : "2023- 2024" ,
159
+ add_responses when_does_your_course_start? : "2024-2025 " ,
160
160
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
161
161
will_you_be_studying_full_or_part_time? : "part-time" ,
162
162
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -184,7 +184,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
184
184
context "question: how_many_credits_does_a_full_time_student_study?" do
185
185
setup do
186
186
testing_node :how_many_credits_does_a_full_time_student_study?
187
- add_responses when_does_your_course_start? : "2023- 2024" ,
187
+ add_responses when_does_your_course_start? : "2024-2025 " ,
188
188
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
189
189
will_you_be_studying_full_or_part_time? : "part-time" ,
190
190
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -213,7 +213,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
213
213
context "question: do_any_of_the_following_apply_uk_full_time_students_only?," do
214
214
setup do
215
215
testing_node :do_any_of_the_following_apply_uk_full_time_students_only?
216
- add_responses when_does_your_course_start? : "2023- 2024" ,
216
+ add_responses when_does_your_course_start? : "2024-2025 " ,
217
217
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
218
218
will_you_be_studying_full_or_part_time? : "full-time" ,
219
219
how_much_are_your_tuition_fees_per_year? : "9250" ,
@@ -235,7 +235,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
235
235
context "question: do_any_of_the_following_apply_all_uk_students?" do
236
236
setup do
237
237
testing_node :do_any_of_the_following_apply_all_uk_students?
238
- add_responses when_does_your_course_start? : "2023- 2024" ,
238
+ add_responses when_does_your_course_start? : "2024-2025 " ,
239
239
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
240
240
will_you_be_studying_full_or_part_time? : "part-time" ,
241
241
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -259,7 +259,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
259
259
context "question: what_course_are_you_studying?," do
260
260
setup do
261
261
testing_node :what_course_are_you_studying?
262
- add_responses when_does_your_course_start? : "2023- 2024" ,
262
+ add_responses when_does_your_course_start? : "2024-2025 " ,
263
263
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
264
264
will_you_be_studying_full_or_part_time? : "full-time" ,
265
265
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -294,7 +294,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
294
294
context "question: are_you_a_doctor_or_dentist?," do
295
295
setup do
296
296
testing_node :are_you_a_doctor_or_dentist?
297
- add_responses when_does_your_course_start? : "2023- 2024" ,
297
+ add_responses when_does_your_course_start? : "2024-2025 " ,
298
298
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
299
299
will_you_be_studying_full_or_part_time? : "full-time" ,
300
300
how_much_are_your_tuition_fees_per_year? : "9250" ,
@@ -322,7 +322,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
322
322
context "outcome: outcome_uk_full_time_students" do
323
323
setup do
324
324
testing_node :outcome_uk_full_time_students
325
- add_responses when_does_your_course_start? : "2023- 2024" ,
325
+ add_responses when_does_your_course_start? : "2024-2025 " ,
326
326
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
327
327
will_you_be_studying_full_or_part_time? : "full-time" ,
328
328
how_much_are_your_tuition_fees_per_year? : "9250" ,
@@ -402,7 +402,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
402
402
context "outcome: outcome_uk_part_time_students" do
403
403
setup do
404
404
testing_node :outcome_uk_part_time_students
405
- add_responses when_does_your_course_start? : "2023- 2024" ,
405
+ add_responses when_does_your_course_start? : "2024-2025 " ,
406
406
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
407
407
will_you_be_studying_full_or_part_time? : "part-time" ,
408
408
how_much_are_your_tuition_fees_per_year? : "6935" ,
@@ -479,7 +479,7 @@ class StudentFinanceCalculatorTest < ActiveSupport::TestCase
479
479
context "outcome: outcome_uk_full_time_dental_medical_students" do
480
480
setup do
481
481
testing_node :outcome_uk_full_time_dental_medical_students
482
- add_responses when_does_your_course_start? : "2023- 2024" ,
482
+ add_responses when_does_your_course_start? : "2024-2025 " ,
483
483
what_loans_are_you_eligible_for? : "tuition-and-maintenance" ,
484
484
will_you_be_studying_full_or_part_time? : "full-time" ,
485
485
how_much_are_your_tuition_fees_per_year? : "9250" ,
0 commit comments