single quotes for non-interpolating strings
Dave Rolsky [Thu, 11 Jun 2009 08:02:54 +0000 (03:02 -0500)]
t/300_immutable/015_immutable_destroy.t

index a837030..82a5df1 100644 (file)
@@ -13,6 +13,6 @@ use Test::More tests => 1;
     __PACKAGE__->meta->make_immutable;
 }
 
-my $f = FooBar->new( name => "SUSAN" );
+my $f = FooBar->new( name => 'SUSAN' );
 
-is( $f->DESTROY, "SUSAN", "Did moose overload DESTROY?" );
+is( $f->DESTROY, 'SUSAN', 'Did moose overload DESTROY?' );