Use a cleaner user interface — dropdowns
[wnstats.git] / t / 002_index_route.t
blob9a266e3617e20240b8668844974afb7a32060303
1 use Test::More tests => 2;
2 use strict;
3 use warnings;
5 # the order is important
6 use charts;
7 use Dancer::Test;
9 route_exists [GET => '/'], 'a route handler is defined for /';
10 response_status_is ['GET' => '/'], 200, 'response status is 200 for /';