Skip to content

Commit

Permalink
add overseas marker to test donors
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBusschau committed Apr 12, 2015
1 parent aa1adbe commit bd6c4af
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/GovTalk/GiftAid/GiftAidTest.php
Expand Up @@ -91,6 +91,7 @@ public function setUp()
'last_name' => 'Smith',
'house_no' => '100',
'postcode' => 'AB23 4CD',
'overseas' => false,
'amount' => 500.00,
'sponsored' => true
),
Expand All @@ -99,8 +100,9 @@ public function setUp()
'title' => null,
'first_name' => 'Jim',
'last_name' => 'Harris',
'house_no' => '25 High St Anytown Farmshire',
'house_no' => '25 High St Anytown Foreignshire',
'postcode' => null,
'overseas' => true,
'amount' => 10.00
),
array(
Expand All @@ -110,6 +112,7 @@ public function setUp()
'last_name' => 'Hill-Jones',
'house_no' => '1',
'postcode' => 'BA23 9CD',
'overseas' => false,
'amount' => 2.50
),
array(
Expand All @@ -119,12 +122,13 @@ public function setUp()
'last_name' => 'Hill-Jones',
'house_no' => '1',
'postcode' => 'BA23 9CD',
'overseas' => false,
'amount' => 12.00
),
array(
'donation_date' => '2013-04-20',
'amount' => 1000.00,
'aggregation' => 'Aggregated donation of 200 x £5 payments from members'
'aggregation' => 'Aggregated donation of 200 x 5 payments from members'
)
);

Expand Down

0 comments on commit bd6c4af

Please sign in to comment.