use_ok stinks; just load the library
[gitmo/Moose-Autobox.git] / t / 007_base.t
CommitLineData
ee6bd664 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
171cd606 6use Test::More tests => 4;
ee6bd664 7
171cd606 8use Moose::Autobox ();
ee6bd664 9
10foreach my $stem (qw(SCALAR ARRAY HASH CODE)) {
11 my $class = "Moose::Autobox::${stem}";
12 ok(!$class->isa('Moose::Object'), "${class} !isa Moose::Object");
13}