forked from PolicyEngine/policyengine-canada
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PolicyEngine#455 Add a new check for age eligibility
- Loading branch information
Showing
3 changed files
with
8 additions
and
14 deletions.
There are no files selected for viewing
15 changes: 5 additions & 10 deletions
15
...engine_canada/tests/gov/provinces/ns/tax/income/credits/age/ns_age_amount_supplement.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 |
---|---|---|
@@ -1,44 +1,39 @@ | ||
- name: Nova Scotia Age amonut supplement; eligible age with eligible taxable income below 25_000 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
age: 65 | ||
ns_taxable_income: 24_999 | ||
ns_age_amount_supplement_eligible: true | ||
output: | ||
ns_age_amount_supplement: 1_465 | ||
|
||
- name: Nova Scotia Age amonut supplement; eligible age with eligible taxable income between 25_000 and 75_000 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
age: 65 | ||
ns_taxable_income: 65_000 | ||
ns_age_amount_supplement_eligible: true | ||
output: | ||
ns_age_amount_supplement: 293 | ||
|
||
- name: Nova Scotia Age tax credit; eligible age with ineligible taxable income more than 75_000 | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
age: 65 | ||
ns_taxable_income: 75_001 | ||
ns_age_amount_supplement_eligible: true | ||
output: | ||
ns_age_amount_supplement: 0 | ||
|
||
- name: Nova Scotia Age tax credit; ineligible age with eligible taxable income | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
age: 64 | ||
ns_taxable_income: 24_999 | ||
ns_age_amount_supplement_eligible: false | ||
output: | ||
ns_age_amount_supplement: 0 | ||
|
||
- name: Nova Scotia Age tax credit; ineligible age with ineligible taxable income | ||
period: 2023 | ||
input: | ||
province_code: NS | ||
age: 64 | ||
ns_taxable_income: 75_001 | ||
ns_age_amount_supplement_eligible: false | ||
output: | ||
ns_age_amount_supplement: 0 |
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
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