in reply to Re^2: Interactivity in tests - done correctly?
in thread Interactivity in tests - done correctly?

ExtUtils::MakeMaker::prompt is the de-facto standard for prompt and Module::Build follows the convention. http://search.cpan.org/dist/Module-Build/lib/Module/Build/API.pod#prompt. If you want it to be optional, you can always
perl ....PL --promptme if( $promptme ){ ...prompt(... } # OR if( $ENV{prompt_me_big_boy} ){ ...prompt(... }