TorChat/t/basic.t

10 lines
176 B
Perl
Raw Normal View History

2020-05-23 03:01:46 +02:00
use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('TorChat');
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
done_testing();