PostText/t/root.t

15 lines
253 B
Perl
Raw Normal View History

2022-07-22 18:43:01 -04:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Mojo::File qw{curfile};
use Test::Mojo;
my $script = curfile->dirname->sibling('PostText.pl');
my $t = Test::Mojo->new($script);
2022-07-28 21:13:26 -04:00
$t->get_ok('/')->status_is(302);
2022-07-22 18:43:01 -04:00
done_testing();