in reply to Interesting WTDI

Hmmm... I have no jewels of wisdom, but i was just wondering...

Would it be possible to create/implement your own namespaces by using similar code to the Test::MockObject which is provided above? Kind of like, (guessing here...)
$INC{"MyModule.pm"} = 1; # "load" module *{"MyModule::TestSub"} = /&TestSub; # "load" a method
Would that be correct?

Replies are listed 'Best First'.
Re^2: Interesting WTDI
by Jenda (Abbot) on Nov 09, 2004 at 22:57 UTC
    $INC{"MyModule.pm"} = 1; # "load" module *MyModule::TestSub = \&TestSub; # "load" a method

    Jenda
    We'd like to help you learn to help yourself
    Look around you, all you see are sympathetic eyes
    Stroll around the grounds until you feel at home
       -- P. Simon in Mrs. Robinson

Re^2: Interesting WTDI
by chromatic (Archbishop) on Nov 10, 2004 at 04:21 UTC

    You only need to set a key in %INC if you want to prevent use or require from attempting to load a module from disk. (You could also put a coderef in @INC, but this way is a lot simpler.