Subject: | Test::More loads Exporter, conceals omission of "use Exporter" |
Math::Counting sets up @EXPORT and %EXPORT_TAGS and @ISA, but forgets to actually require
Exporter. As a consequence, simple use of the module fails, since no subs are exported.
Unit tests pass, however, since Test::More pulls in Exporter, concealing the author's omission.
Can Test::Simple and friends perhaps rely on their own bundled version of core libs like
Exporter?