PostText/t/root.t

10 lines
182 B
Perl
Raw Normal View History

2022-10-01 18:00:23 -04:00
use Mojo::Base -strict;
2022-07-22 18:43:01 -04:00
use Test::More;
use Test::Mojo;
2022-10-01 18:00:23 -04:00
my $t = Test::Mojo->new('PostText');
2022-07-22 18:43:01 -04:00
2022-10-12 23:58:46 -04:00
$t->get_ok('/')->status_is(302)->header_like(Location => qr/thread/);
2022-07-22 18:43:01 -04:00
done_testing();