another every_param usage
[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 lib 'lib';
10
11 use_ok('MojoFacets');
12
13 # Test
14 my $t = Test::Mojo->new('MojoFacets');
15 $t->get_ok('/')->status_is(200)->content_type_is('text/html;charset=UTF-8')
16   ->content_like(qr/Mojo/i);