commit | 5d1ffb419806a738ee58276edff2132c35bda00d | [log] [tgz] |
---|---|---|
author | Nils Diewald <nils@diewald-online.de> | Wed May 21 17:45:34 2014 +0000 |
committer | Nils Diewald <nils@diewald-online.de> | Wed May 21 17:45:34 2014 +0000 |
tree | 10deaab2c17d329f464c9ebb6d62f32bfa9790e2 |
Slim frontend for API and serialization tests
diff --git a/t/basic.t b/t/basic.t new file mode 100644 index 0000000..b6893cd --- /dev/null +++ b/t/basic.t
@@ -0,0 +1,9 @@ +use Mojo::Base -strict; + +use Test::More; +use Test::Mojo; + +my $t = Test::Mojo->new('Korap'); +$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i); + +done_testing();