prepare for 0.011
[catagits/CatalystX-Declare.git] / t / 100_complex.t
index 28e8cf8..c982ce5 100644 (file)
@@ -61,5 +61,11 @@ is get('/foo/surrounded_target'), 'foo/surrounded_target surrounded', 'action wa
 # inline classes
 is get('/foo/inline_class'), 'HELLO', 'inline classes work as expected';
 
+# error handling
+is get('/foo/wants_integer/butdoesntgetone'), 'no integer', 'validation error causes bad request error';
+
+# fix bug with capture args below under { }
+is get('/foo/lower/down/the/param/3/road/5'), 8, 'capture args and block under work together';
+
 
 done_testing;