Optionally aggreagate tests.
[catagits/Catalyst-Runtime.git] / t / aggregate.t
diff --git a/t/aggregate.t b/t/aggregate.t
new file mode 100644 (file)
index 0000000..fc10888
--- /dev/null
@@ -0,0 +1,17 @@
+#!perl
+
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/lib";
+
+use Test::Aggregate;
+
+my $tests = Test::Aggregate->new({
+    dirs          => 't/aggregate',
+    verbose       => 1,
+    set_filenames => 1,
+});
+
+$tests->run;