projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6735458
)
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
patch
|
blob
|
blame
|
history
diff --git
a/t/300_immutable/015_immutable_destroy.t
b/t/300_immutable/015_immutable_destroy.t
index
a837030
..
82a5df1
100644
(file)
--- a/
t/300_immutable/015_immutable_destroy.t
+++ b/
t/300_immutable/015_immutable_destroy.t
@@
-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?' );