PostText/t/root.t
2022-10-12 23:58:46 -04:00

10 lines
182 B
Perl

use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('PostText');
$t->get_ok('/')->status_is(302)->header_like(Location => qr/thread/);
done_testing();