aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/Mock/MapIt.pm4
-rw-r--r--t/app/controller/reports.t15
2 files changed, 10 insertions, 9 deletions
diff --git a/t/Mock/MapIt.pm b/t/Mock/MapIt.pm
index 315b4fe9f..ea00a7ff0 100644
--- a/t/Mock/MapIt.pm
+++ b/t/Mock/MapIt.pm
@@ -113,8 +113,8 @@ sub dispatch_request {
my ($self, $area) = @_;
if ($area eq '2514') {
return $self->output({
- 8794 => {parent_area => 2514, id => 8794, name => "Aston", type => "MTW"},
- 8773 => {parent_area => 2514, id => 8773, name => "Bournville", type => "MTW"},
+ 151907 => {parent_area => 2514, id => 151907, name => "Bordesley & Highgate", type => "MTW"},
+ 151942 => {parent_area => 2514, id => 151942, name => "Birchfield", type => "MTW"},
});
}
if ($area eq '2326') {
diff --git a/t/app/controller/reports.t b/t/app/controller/reports.t
index 8cdfddd1b..c57b15a8e 100644
--- a/t/app/controller/reports.t
+++ b/t/app/controller/reports.t
@@ -115,19 +115,20 @@ $mech->content_contains('5,9,10,22');
$mech->content_contains('2,3,4,4');
FixMyStreet::override_config {
+ ALLOWED_COBRANDS => 'fixmystreet',
MAPIT_URL => 'http://mapit.uk/',
}, sub {
$mech->submit_form_ok( { with_fields => { body => $body_edin_id } }, 'Submitted dropdown okay' );
- is $mech->uri->path, '/reports/City+of+Edinburgh+Council';
+ is $mech->uri->path, '/reports/City+of+Edinburgh';
subtest "test ward pages" => sub {
$mech->get_ok('/reports/Birmingham/Bad-Ward');
- is $mech->uri->path, '/reports/Birmingham+City+Council';
- $mech->get_ok('/reports/Birmingham/Aston');
- is $mech->uri->path, '/reports/Birmingham+City+Council/Aston';
- $mech->get_ok('/reports/Birmingham/Aston|Bournville');
- is $mech->uri->path, '/reports/Birmingham+City+Council/Aston%7CBournville';
- $mech->content_contains('Aston, Bournville');
+ is $mech->uri->path, '/reports/Birmingham';
+ $mech->get_ok('/reports/Birmingham/Bordesley+and+Highgate');
+ is $mech->uri->path, '/reports/Birmingham/Bordesley+and+Highgate';
+ $mech->get_ok('/reports/Birmingham/Bordesley+and+Highgate|Birchfield');
+ is $mech->uri->path, '/reports/Birmingham/Bordesley+and+Highgate%7CBirchfield';
+ $mech->content_contains('Birchfield, Bordesley & Highgate');
};
$mech->get_ok('/reports/Westminster');