`perldoc Exporter` says I should not export object->methods(). If that is the case, how do I organize a large module (My::Module) into logical units (My::Module::This and My::Module::That), making all those My::Module::(This|That)->methods() accessible as My::Module->methods() so they accept my base class on the interface and that Test::More::can_ok('My::Module','methods') returns true?
-- Hugh