aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-05-13 10:18:22 +0100
committerStruan Donald <struan@exo.org.uk>2011-05-13 10:18:22 +0100
commita6aeadb959c6eb5e8e87f0a79ecd5ff53e3a7e56 (patch)
tree000814f96d4cb058e6f7ea2072baed045a14853a /t/app/controller
parentf2bcdeb7d90a81b3498a5eb4c322d1634a43fc3e (diff)
start adding contact form
Diffstat (limited to 't/app/controller')
-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();