Doc updates on running tests
[p5sagit/p5-mst-13.2.git] / t / lib / NoExporter.pm
CommitLineData
30e302f8 1package NoExporter;
2
3$VERSION = 1.02;
4sub import {
5 shift;
6 die "NoExporter exports nothing. You asked for: @_" if @_;
7}
8
91;
10