I want to write a Module::Starter::Plugin and obviously I want to test the files created if the plugin is active. The most straight forward way is to ask the engine plugin Module::Starter::Simple to provide theses files. Module::Starter::Simple::create_distro() has a lexically scoped variable @files, but its use is unclear because it is not returned by that method?!
I do not understand the comment
# XXX: no need to return the files created
in
Module::Starter::Simple::create_distro()
.I want to write a Module::Starter::Plugin and obviously I want to test the files created if the plugin is active. The most straight forward way is to ask the engine plugin
Module::Starter::Simple
to provide theses files.Module::Starter::Simple::create_distro()
has a lexically scoped variable@files
, but its use is unclear because it is not returned by that method?!