MakeThemPay/t/basic.t

10 lines
180 B
Perl
Raw Normal View History

2024-10-24 13:54:16 +02:00
use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('MakeThemPay');
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
done_testing();