The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test::NetHack::Items;
our $VERSION = '0.12';


use strict;
use warnings;
use Test::NetHack::Item;

sub import {
    local $Test::Builder::Level = $Test::Builder::Level + 1;

    my $class = shift;
    my @items = @_;

    plan_items(@items);
    test_items(@items);
}

1;