diff options
author | Matthew Somerville <matthew@mysociety.org> | 2011-06-24 19:00:31 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2011-06-24 19:05:55 +0100 |
commit | 62ffebc89cc66d32a828ea1de8c850c3e950faa1 (patch) | |
tree | 35c457eb065d4ef1ec6f6cd072092a33b0b853d8 /t/app/controller/my.t | |
parent | 9be7fa6404bb1acc34a07e665b8ba4675b5261db (diff) |
Sign in over login; tidy CSS.
Diffstat (limited to 't/app/controller/my.t')
-rw-r--r-- | t/app/controller/my.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/app/controller/my.t b/t/app/controller/my.t index 1ed6806a4..da509e8ed 100644 --- a/t/app/controller/my.t +++ b/t/app/controller/my.t @@ -7,9 +7,9 @@ use FixMyStreet::TestMech; my $mech = FixMyStreet::TestMech->new; $mech->get_ok('/my'); -is $mech->uri->path, '/auth', "got sent to the login page"; +is $mech->uri->path, '/auth', "got sent to the sign in page"; -# login +# sign in my $user = $mech->log_in_ok( 'test@example.com' ); $mech->get_ok('/my'); is $mech->uri->path, '/my', "stayed on '/my/' page"; |