summaryrefslogtreecommitdiff
path: root/t/002_index_route.t
diff options
context:
space:
mode:
Diffstat (limited to 't/002_index_route.t')
-rw-r--r--t/002_index_route.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/002_index_route.t b/t/002_index_route.t
new file mode 100644
index 0000000..457d3ef
--- /dev/null
+++ b/t/002_index_route.t
@@ -0,0 +1,10 @@
+use Test::More tests => 2;
+use strict;
+use warnings;
+
+# the order is important
+use StarGit;
+use Dancer::Test;
+
+route_exists [GET => '/'], 'a route handler is defined for /';
+response_status_is ['GET' => '/'], 200, 'response status is 200 for /';