test adjustments for WebGUI::Paths

This commit is contained in:
Graham Knop 2010-03-11 07:27:01 -06:00
parent 65e858ff4d
commit 7afda00d9b
26 changed files with 127 additions and 132 deletions

View file

@ -0,0 +1,10 @@
package WebGUI::Test::Pluggable::First;
$VERSION = 1.0;
sub first {
return 1;
}
1;

View file

@ -0,0 +1,10 @@
package WebGUI::Test::Pluggable::FirstOne;
$VERSION = 1.0;
sub first {
return 1;
}
1;

View file

@ -0,0 +1,10 @@
package WebGUI::Test::Pluggable::Second;
$VERSION = 1.0;
sub second {
return 1;
}
1;

View file

@ -0,0 +1,10 @@
package WebGUI::Test::Pluggable::Second::Sub;
$VERSION = 1.0;
sub child {
return 1;
}
1;