Subject: | Filter::Util::Call should be build_requires()'ed not requires() |
Module::Install::TestBase has:
$self->requires('Filter::Util::Call');
This causes Filter::Util::Call to be marked as being required for the
dist, rather than as a build or test requires -- that is, marks it as a
runtime dependency, rather than a build/test dependency.
Marking the dependency using test_requires() (right now a synonym for
build_requires) will cause it to be properly marked as a build dependency.
Thanks!