aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/Cobrands/.gitignore1
-rw-r--r--t/app/uri_for.t26
2 files changed, 0 insertions, 27 deletions
diff --git a/t/Cobrands/.gitignore b/t/Cobrands/.gitignore
deleted file mode 100644
index 77650dd46..000000000
--- a/t/Cobrands/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/Cities \ No newline at end of file
diff --git a/t/app/uri_for.t b/t/app/uri_for.t
index 2362e6976..51a6e8a0e 100644
--- a/t/app/uri_for.t
+++ b/t/app/uri_for.t
@@ -105,30 +105,4 @@ like(
'retains language'
);
-## Should really test the cities but we'd need to fake up too much of the
-# request. Following code starts to do this but is not complete. Instead better
-# to test that the cities produces the correct urls by looking at the html
-# produced.
-#
-# # cities
-# my $cities_c = FixMyStreet::App->new(
-# {
-# request => Catalyst::Request->new(
-# {
-# base => URI->new('http://cities.fixmystreet.com/'),
-# uri => URI->new(
-# 'http://cities.fixmystreet.com/test_namespace?city=cardiff'
-# ),
-# params => { city => 'cardiff', },
-# }
-# ),
-# namespace => 'test_namespace',
-# }
-# )->setup_request;
-# is(
-# $cities_c->uri_for( '/foo', { bar => 'baz' } ) . "",
-# '{microapp-href:http://cities.fixmystreet.com/foo?bar=baz&city=cardiff}',
-# 'Cities url'
-# );
-
done_testing();