Skip to content

Commit

Permalink
Added tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ysyrota committed Nov 28, 2011
1 parent 1879a14 commit ce21d08
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions t/basic.t
@@ -0,0 +1,18 @@
use strict;
use warnings;

use Test::More tests => 2;

BEGIN { require FindBin; $ENV{MOJO_HOME} = "$FindBin::Bin/" }
require "$FindBin::Bin/../expert.pl";

use Test::Mojo;

#my $app = app();
#$app->log->level('debug');

my $t = Test::Mojo->new;

# Index page
$t->get_ok('/')->status_is(200);

0 comments on commit ce21d08

Please sign in to comment.