aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller/contact.t
diff options
context:
space:
mode:
Diffstat (limited to 't/app/controller/contact.t')
-rw-r--r--t/app/controller/contact.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/app/controller/contact.t b/t/app/controller/contact.t
new file mode 100644
index 000000000..a15f08118
--- /dev/null
+++ b/t/app/controller/contact.t
@@ -0,0 +1,14 @@
+use strict;
+use warnings;
+use Test::More;
+
+use FixMyStreet::TestMech;
+
+my $mech = FixMyStreet::TestMech->new;
+
+
+
+$mech->get_ok( '/contact' );
+$mech->content_contains( "We'd love to hear what you think about this site" );
+
+done_testing();