'Int' => { expand => sub { shift }, collapse => sub { shift } },
'Num' => { expand => sub { shift }, collapse => sub { shift } },
'Str' => { expand => sub { shift }, collapse => sub { shift } },
+ 'Bool' => { expand => sub { shift }, collapse => sub { shift } },
# These are the trickier ones, (see notes)
# NOTE:
# Because we are nice guys, we will check
use strict;
use warnings;
-use Test::More tests => 11;
+use Test::More tests => 12;
BEGIN {
use_ok('MooseX::Storage');
with Storage;
- has 'number' => ( is => 'ro', isa => 'Int' );
- has 'string' => ( is => 'ro', isa => 'Str' );
- has 'float' => ( is => 'ro', isa => 'Num' );
- has 'array' => ( is => 'ro', isa => 'ArrayRef' );
- has 'hash' => ( is => 'ro', isa => 'HashRef' );
- has 'object' => ( is => 'ro', isa => 'Foo' );
+ has 'number' => ( is => 'ro', isa => 'Int' );
+ has 'string' => ( is => 'ro', isa => 'Str' );
+ has 'boolean' => ( is => 'ro', isa => 'Bool' );
+ has 'float' => ( is => 'ro', isa => 'Num' );
+ has 'array' => ( is => 'ro', isa => 'ArrayRef' );
+ has 'hash' => ( is => 'ro', isa => 'HashRef' );
+ has 'object' => ( is => 'ro', isa => 'Foo' );
}
{
my $foo = Foo->new(
- number => 10,
- string => 'foo',
- float => 10.5,
- array => [ 1 .. 10 ],
- hash => { map { $_ => undef } ( 1 .. 10 ) },
- object => Foo->new( number => 2 ),
+ number => 10,
+ string => 'foo',
+ boolean => 1,
+ float => 10.5,
+ array => [ 1 .. 10 ],
+ hash => { map { $_ => undef } ( 1 .. 10 ) },
+ object => Foo->new( number => 2 ),
);
isa_ok( $foo, 'Foo' );
__CLASS__ => 'Foo',
number => 10,
string => 'foo',
+ boolean => 1,
float => 10.5,
array => [ 1 .. 10 ],
hash => { map { $_ => undef } ( 1 .. 10 ) },
__CLASS__ => 'Foo',
number => 10,
string => 'foo',
+ boolean => 1,
float => 10.5,
array => [ 1 .. 10 ],
hash => { map { $_ => undef } ( 1 .. 10 ) },
is( $foo->number, 10, '... got the right number' );
is( $foo->string, 'foo', '... got the right string' );
+ ok( $foo->boolean, '... got the right boolean' );
is( $foo->float, 10.5, '... got the right float' );
is_deeply( $foo->array, [ 1 .. 10 ], '... got the right array' );
is_deeply(