aboutsummaryrefslogtreecommitdiffstats
path: root/t/04load_all.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04load_all.t')
-rw-r--r--t/04load_all.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/04load_all.t b/t/04load_all.t
new file mode 100644
index 0000000..a7923fc
--- /dev/null
+++ b/t/04load_all.t
@@ -0,0 +1,15 @@
+use strict;
+use warnings;
+use Test::More ();
+
+Test::More::plan('no_plan');
+
+use Module::Pluggable::Object;
+
+my $finder = Module::Pluggable::Object->new(
+ search_path => [ 'Reaction' ],
+ );
+
+foreach my $class (sort $finder->plugins) {
+ Test::More::use_ok($class);
+}