From 7adfd53f17f66ffe93763e944ed1d3fc52a369dc Mon Sep 17 00:00:00 2001 From: matthewt Date: Wed, 12 Sep 2007 18:11:34 +0000 Subject: moved shit to trunk --- t/04load_all.t | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 t/04load_all.t (limited to 't/04load_all.t') 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); +} -- cgit v1.2.3-54-g00ecf