Refreshing branch
[catagits/Catalyst-Runtime.git] / trunk / t / aggregate / live_component_controller_action_path_matchsingle.t
diff --git a/trunk/t/aggregate/live_component_controller_action_path_matchsingle.t b/trunk/t/aggregate/live_component_controller_action_path_matchsingle.t
new file mode 100644 (file)
index 0000000..beced91
--- /dev/null
@@ -0,0 +1,36 @@
+#!perl
+
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/../lib";
+
+our $iters;
+
+BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; }
+
+use Test::More;
+use Catalyst::Test 'TestAppMatchSingleArg';
+
+plan 'skip_all' if ( $ENV{CATALYST_SERVER} );
+
+plan tests => 3*$iters;
+
+if ( $ENV{CAT_BENCHMARK} ) {
+    require Benchmark;
+    Benchmark::timethis( $iters, \&run_tests );
+}
+else {
+    for ( 1 .. $iters ) {
+        run_tests();
+    }
+}
+
+sub run_tests {
+    {
+        is(get('/foo/bar/baz'), 'Path', 'multiple args matched :Path');
+        is(get('/foo'), 'Path Args(1)', 'single arg matched :Path Args(1)');
+        is(get('/foo/bar'), 'Path Args(2)', 'two args matched :Path Args(2)');
+    }
+}