-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Northwest Territories Pension Credit
Fixes #339
- Loading branch information
Showing
2 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
policyengine_canada/tests/gov/provinces/nt/tax/income/nt_disability_amount_self.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
- name: under 18 years old without disability, not head of the family, no childcare cost | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 17 | ||
is_disabled: false | ||
is_head: false | ||
childcare_costs: 0 | ||
output: | ||
nt_disability_amount_self: 0 | ||
|
||
- name: under 18 years old without disability, not head of the family, with childcare cost over 3030 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 17 | ||
is_disabled: false | ||
is_head: false | ||
childcare_costs: 3050 | ||
output: | ||
nt_disability_amount_self: 0 | ||
|
||
- name: under 18 years old with disability, not head of the family, with childcare cost over 3030 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 17 | ||
is_disabled: true | ||
is_head: false | ||
childcare_costs: 3050 | ||
output: | ||
nt_disability_amount_self: 0 | ||
|
||
- name: under 18 years old with disability, is head of the family, with childcare cost over 3030 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 17 | ||
is_disabled: true | ||
is_head: true | ||
childcare_costs: 3050 | ||
output: | ||
nt_disability_amount_self: 17812 | ||
|
||
- name: under 18 years old with disability, is head of the family, without childcare cost | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 17 | ||
is_disabled: true | ||
is_head: true | ||
childcare_costs: 0 | ||
output: | ||
nt_disability_amount_self: 17832 | ||
|
||
- name: 18 years old with disability, is head of the family, with childcare cost over 3030 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 18 | ||
is_disabled: true | ||
is_head: true | ||
childcare_costs: 3050 | ||
output: | ||
nt_disability_amount_self: 12658 | ||
|
||
- name: over 18 years old with disability, is head of the family, with childcare cost over 3030 | ||
period: 2022 | ||
input: | ||
province_code: NT | ||
age: 19 | ||
is_disabled: true | ||
is_head: true | ||
childcare_costs: 3050 | ||
output: | ||
nt_disability_amount_self: 12658 |