Dominik Meyer
f20a2919d3
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
181 B
Perl
10 lines
181 B
Perl
use Mojo::Base -strict;
|
|
|
|
use Test::More;
|
|
use Test::Mojo;
|
|
|
|
my $t = Test::Mojo->new('Webhook2Ntfy');
|
|
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
|
|
|
|
done_testing();
|