Clean up the clone tests, better error message on cloning the wrong things
Shawn M Moore [Fri, 27 Jun 2008 04:16:41 +0000 (04:16 +0000)]
lib/Mouse/Meta/Class.pm
t/031-clone.t

index 8ecb828..96da88f 100644 (file)
@@ -89,7 +89,7 @@ sub clone_object {
     my $instance = shift;
 
     (blessed($instance) && $instance->isa($class->name))
-        || confess "You must pass an instance ($instance) of the metaclass (" . $class->name . ")";
+        || confess "You must pass an instance of the metaclass (" . $class->name . "), not ($instance)";
 
     $class->clone_instance($instance, @_);
 }
index 44b9ce0..1f5cc50 100644 (file)
@@ -1,11 +1,10 @@
-#!/usr/bin/perl
-
+#!/usr/bin/env perl
 use strict;
 use warnings;
+use Test::More tests => 6;
+use Test::Exception;
 
-use Test::More 'no_plan';
-
-{
+do {
     package Foo;
     use Mouse;
 
@@ -21,18 +20,26 @@ use Test::More 'no_plan';
     );
 
     sub clone {
-        my ( $self, @args ) = @_;
-        $self->meta->clone_object( $self, @args );
+        my ($self, @args) = @_;
+        $self->meta->clone_object($self, @args);
     }
-}
+};
+
+my $foo = Foo->new(bar => [ 1, 2, 3 ]);
+
+is($foo->foo, "foo", "attr 1",);
+is_deeply($foo->bar, [ 1 .. 3 ], "attr 2");
 
-my $foo = Foo->new( bar => [ 1, 2, 3 ] );
+my $clone = $foo->clone(foo => "dancing");
 
-is( $foo->foo, "foo", "attr 1", );
-is_deeply( $foo->bar, [ 1 .. 3 ], "attr 2" );
+is($clone->foo, "dancing", "overridden attr");
+is_deeply($clone->bar, [ 1 .. 3 ], "clone attr");
 
-my $clone = $foo->clone( foo => "dancing" );
+throws_ok {
+    Foo->meta->clone_object("constant");
+} qr/You must pass an instance of the metaclass \(Foo\), not \(constant\)/;
 
-is( $clone->foo, "dancing", "overridden attr" );
-is_deeply( $clone->bar, [ 1 .. 3 ], "clone attr" );
+throws_ok {
+    Foo->meta->clone_object(Foo->meta)
+} qr/You must pass an instance of the metaclass \(Foo\), not \(Mo.se::Meta::Class=HASH\(\w+\)\)/;