use Moose::Util::TypeConstraints;
use Moose::Util ();
-use Moose::Attribute::Native;
+use Moose::Meta::Attribute::Native;
sub throw_error {
# FIXME This
-package Moose::Attribute::Native;
+package Moose::Meta::Attribute::Native;
our $VERSION = '0.87';
$VERSION = eval $VERSION;
=head1 NAME
-Moose::Attribute::Native - Extend your attribute interfaces
+Moose::Meta::Attribute::Native - Extend your attribute interfaces
=head1 SYNOPSIS
use strict;
use warnings;
-use Test::More tests => 1;
+use Test::More tests => 7;
use Moose ();
BEGIN {
- use_ok('Moose::Attribute::Native');
+ use_ok('Moose::Meta::Attribute::Native');
+ use_ok('Moose::Meta::Attribute::Native::Trait::Bool');
+ use_ok('Moose::Meta::Attribute::Native::Trait::Hash');
+ use_ok('Moose::Meta::Attribute::Native::Trait::Array');
+ use_ok('Moose::Meta::Attribute::Native::Trait::Counter');
+ use_ok('Moose::Meta::Attribute::Native::Trait::Number');
+ use_ok('Moose::Meta::Attribute::Native::Trait::String');
}