|
2 | 2 | - name: All conditions met |
3 | 3 | period: 2025 |
4 | 4 | input: |
5 | | - tax_free_childcare_child_age_eligible: true |
| 5 | + tax_free_childcare_qualifying_child: true |
6 | 6 | tax_free_childcare_meets_income_requirements: true |
7 | 7 | tax_free_childcare_program_eligible: true |
8 | 8 | tax_free_childcare_work_condition: true |
9 | 9 | output: |
10 | 10 | tax_free_childcare_eligible: true |
11 | 11 |
|
12 | | -- name: Fails age condition only |
| 12 | +- name: Fails qualifying child condition only |
13 | 13 | period: 2025 |
14 | 14 | input: |
15 | | - tax_free_childcare_child_age_eligible: false |
| 15 | + tax_free_childcare_qualifying_child: false |
16 | 16 | tax_free_childcare_meets_income_requirements: true |
17 | 17 | tax_free_childcare_program_eligible: true |
18 | 18 | tax_free_childcare_work_condition: true |
|
22 | 22 | - name: Fails income condition only |
23 | 23 | period: 2025 |
24 | 24 | input: |
25 | | - tax_free_childcare_child_age_eligible: true |
| 25 | + tax_free_childcare_qualifying_child: true |
26 | 26 | tax_free_childcare_meets_income_requirements: false |
27 | 27 | tax_free_childcare_program_eligible: true |
28 | 28 | tax_free_childcare_work_condition: true |
|
33 | 33 | - name: Fails work condition only |
34 | 34 | period: 2025 |
35 | 35 | input: |
36 | | - tax_free_childcare_child_age_eligible: true |
| 36 | + tax_free_childcare_qualifying_child: true |
37 | 37 | tax_free_childcare_meets_income_requirements: true |
38 | 38 | tax_free_childcare_program_eligible: true |
39 | 39 | tax_free_childcare_work_condition: false |
|
43 | 43 | - name: Fails all conditions |
44 | 44 | period: 2025 |
45 | 45 | input: |
46 | | - tax_free_childcare_child_age_eligible: false |
| 46 | + tax_free_childcare_qualifying_child: false |
47 | 47 | tax_free_childcare_meets_income_requirements: false |
48 | 48 | tax_free_childcare_program_eligible: false |
49 | 49 | tax_free_childcare_work_condition: false |
50 | 50 | output: |
51 | 51 | tax_free_childcare_eligible: false |
| 52 | + |
| 53 | +- name: Fails because child is looked after by a local authority |
| 54 | + period: 2025 |
| 55 | + input: |
| 56 | + tax_free_childcare_child_age_eligible: true |
| 57 | + is_looked_after_by_local_authority: true |
| 58 | + tax_free_childcare_meets_income_requirements: true |
| 59 | + tax_free_childcare_program_eligible: true |
| 60 | + tax_free_childcare_work_condition: true |
| 61 | + output: |
| 62 | + tax_free_childcare_eligible: false |
0 commit comments