about summary refs log tree commit diff
path: root/t
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2012-01-24 20:39:18 -0800
committerJonathan "Duke" Leto <jonathan@leto.net>2012-01-24 20:39:18 -0800
commitbf95acf2b686ea4556a2570ce65b1c615bcc7a3f (patch)
tree681483fa3d504f49ba66d30dd2af07ee1dd89352 /t
parentDetect Winxed-based build systems + test suites (diff)
downloadjitterbug-bf95acf2b686ea4556a2570ce65b1c615bcc7a3f.tar.gz
Try to get stuff working with Dancer 1.3x, but still nagged by a few failing tests in t/002_index_route.t new_dancer
Diffstat (limited to 't')
-rw-r--r--t/005_builder.t2
-rw-r--r--t/data/test.yml3
-rw-r--r--t/lib/jitterbug/Test.pm2
3 files changed, 4 insertions, 3 deletions
diff --git a/t/005_builder.t b/t/005_builder.t
index 7888417..de7dbbb 100644
--- a/t/005_builder.t
+++ b/t/005_builder.t
@@ -41,7 +41,7 @@ jitterbug::Test->init();
             'engines' => {
                          'xslate' => {
                                      'type' => 'text',
-                                     'path' => '/',
+                                     'path' => [ '/' ],
                                      'cache' => '0'
                                    }
                        },
diff --git a/t/data/test.yml b/t/data/test.yml
index eab52c3..80a9945 100644
--- a/t/data/test.yml
+++ b/t/data/test.yml
@@ -6,7 +6,8 @@ builds_per_feed: 5
 template: "xslate"
 engines:
   xslate:
-    path: /
+    path:
+      - /
     type: text
     cache: 0
 
diff --git a/t/lib/jitterbug/Test.pm b/t/lib/jitterbug/Test.pm
index 2326e83..652fa79 100644
--- a/t/lib/jitterbug/Test.pm
+++ b/t/lib/jitterbug/Test.pm
@@ -35,7 +35,7 @@ sub _setting {
     setting views    => 'views';
     setting engines  => {
         xslate => {
-            path  => '/',
+            path  => [ '/' ],
             type  => 'text',
             cache => 0,
         }