Skip to content

Commit 5cc7a43

Browse files
committed
Update married couples allowance
As part of uprating 2025: Married couple's allowance will be increased: Minimum from £4,270 to £4,360 Maximum from £11,080 to £11,270 https://trello.com/c/A5ykVq04/323-7-april-uprating-calculate-your-married-couples-allowance
1 parent be3d0c0 commit 5cc7a43

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you are using GOV.UK Docker, remember to combine it with the commands that fo
3333
### Running the test suite
3434

3535
```
36-
bundle exec rake
36+
11,270
3737
```
3838

3939
### Troubleshooting

config/smart_answers/rates/married_couples_allowance.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# and usually 1. The last item in the file should have an end
44
# date of 2999-01-01
55
---
6-
- start_date: 2023-04-06
7-
end_date: 2024-04-05
8-
maximum_married_couple_allowance: 10375
9-
minimum_married_couple_allowance: 4010
10-
116
- start_date: 2024-04-06
12-
end_date: 2999-01-01
7+
end_date: 2025-04-05
138
maximum_married_couple_allowance: 11080
149
minimum_married_couple_allowance: 4270
10+
11+
- start_date: 2025-04-06
12+
end_date: 2999-01-01
13+
maximum_married_couple_allowance: 11270
14+
minimum_married_couple_allowance: 4360

test/unit/calculators/married_couple_allowance_calculator_test.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,25 +108,25 @@ def default_calculator
108108
assert_equal SmartAnswer::Money.new("28250"), result
109109
end
110110

111-
test "rate values for 2023/24" do
112-
travel_to("2023-06-01") do
111+
test "rate values for 2024/25" do
112+
travel_to("2024-06-01") do
113113
calculator = MarriedCouplesAllowanceCalculator.new
114114

115115
assert_equal 12_570, calculator.personal_allowance
116-
assert_equal 34_600.0, calculator.income_limit_for_personal_allowances
117-
assert_equal 10_375, calculator.maximum_mca
118-
assert_equal 4010, calculator.minimum_mca
116+
assert_equal 37_700.0, calculator.income_limit_for_personal_allowances
117+
assert_equal 11_080, calculator.maximum_mca
118+
assert_equal 4270, calculator.minimum_mca
119119
end
120120
end
121121

122-
test "rate values for 2024/25" do
123-
travel_to("2024-06-01") do
122+
test "rate values for 2025/26" do
123+
travel_to("2025-06-01") do
124124
calculator = MarriedCouplesAllowanceCalculator.new
125125

126126
assert_equal 12_570, calculator.personal_allowance
127127
assert_equal 37_700.0, calculator.income_limit_for_personal_allowances
128-
assert_equal 11_080, calculator.maximum_mca
129-
assert_equal 4270, calculator.minimum_mca
128+
assert_equal 11_270, calculator.maximum_mca
129+
assert_equal 4360, calculator.minimum_mca
130130
end
131131
end
132132
end

0 commit comments

Comments
 (0)