aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller/root.t
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2019-12-19 14:55:35 +0000
committerMatthew Somerville <matthew@mysociety.org>2020-02-14 10:38:49 +0000
commitb5a6187db01a997b6beea8dea4f21908b2be6091 (patch)
treeb1660deea52a26f70017632af25f267f110f2944 /t/app/controller/root.t
parent0e80a90bebc12fe381892386f9ffd751edb38d7c (diff)
Remove appcache (breaking showing reports from localStorage cache).
Diffstat (limited to 't/app/controller/root.t')
-rw-r--r--t/app/controller/root.t12
1 files changed, 0 insertions, 12 deletions
diff --git a/t/app/controller/root.t b/t/app/controller/root.t
index 85119da24..0263b65d7 100644
--- a/t/app/controller/root.t
+++ b/t/app/controller/root.t
@@ -60,18 +60,6 @@ FixMyStreet::override_config {
is $mech->res->previous, undef, 'No redirect';
}
};
-
- subtest 'LOGIN_REQUIRED = 1 404s blacklisted URLs' => sub {
- my @blacklist = (
- '/offline/appcache',
- );
-
- foreach my $url (@blacklist) {
- $mech->get($url);
- ok !$mech->res->is_success(), "want a bad response";
- is $mech->res->code, 404, "got 404";
- }
- };
};
subtest "check_login_disallowed cobrand hook" => sub {