PostText/t/root.t
2022-10-01 18:00:23 -04:00

12 lines
166 B
Perl

#!/usr/bin/env perl
use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('PostText');
$t->get_ok('/')->status_is(302);
done_testing();