in reply to Can't locate Modules/test.pm in @INC

If test.pm begins with the line
package Module::test;
then you should be able to load your module into any of your scripts (located in the 'plscript' folder) by beginning them with:
use Module::test;
(This is reliant upon the fact that '.' is already in @INC.)

Cheers,
Rob