Initial import

This commit is contained in:
Lucas Gabriel Vuotto 2025-04-26 09:41:50 +00:00
commit dd492db92e
37 changed files with 1953 additions and 0 deletions

9
t/basic.t Normal file
View file

@ -0,0 +1,9 @@
use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('Pooru::API::V0');
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
done_testing();