diff options
Diffstat (limited to 't/app/controller/index.t')
-rw-r--r-- | t/app/controller/index.t | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/app/controller/index.t b/t/app/controller/index.t index bd268b3d7..691eb0007 100644 --- a/t/app/controller/index.t +++ b/t/app/controller/index.t @@ -91,6 +91,12 @@ subtest "prefilters /around if user has categories" => sub { $mech->content_contains("Cows,Potholes"); }; +subtest "prefilters /around if filter_category given in URL" => sub { + $mech->get_ok('/?filter_category=MyUniqueTestCategory'); + # NB can't use visible_form_values because categories field is hidden + $mech->content_contains("MyUniqueTestCategory"); +}; + END { done_testing(); } |