Merge branch 'master' of github.com:dpavlin/MojoFacets
[MojoFacets.git] / t / basic.t
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 5;
7 use Test::Mojo;
8
9 use_ok('MojoFacets');
10
11 # Test
12 my $t = Test::Mojo->new(app => 'MojoFacets');
13 $t->get_ok('/')->status_is(200)->content_type_is('text/html')
14   ->content_like(qr/Mojo/i);