projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d62bc8f
)
Add $VERSION back to test classes (accidentally removed in dzilification)
Dave Rolsky [Wed, 29 Dec 2010 15:37:38 +0000 (10:37 -0500)]
t/001_cmop/lib/BinaryTree.pm
patch
|
blob
|
blame
|
history
t/001_cmop/lib/TestClassLoaded2.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/001_cmop/lib/BinaryTree.pm
b/t/001_cmop/lib/BinaryTree.pm
index
9933b19
..
539800a
100644
(file)
--- a/
t/001_cmop/lib/BinaryTree.pm
+++ b/
t/001_cmop/lib/BinaryTree.pm
@@
-7,6
+7,7
@@
use Carp qw/confess/;
use metaclass;
+our $VERSION = '0.02';
BinaryTree->meta->add_attribute('uid' => (
reader => 'getUID',
diff --git
a/t/001_cmop/lib/TestClassLoaded2.pm
b/t/001_cmop/lib/TestClassLoaded2.pm
index
e66e70b
..
46c18f9
100644
(file)
--- a/
t/001_cmop/lib/TestClassLoaded2.pm
+++ b/
t/001_cmop/lib/TestClassLoaded2.pm
@@
-2,6
+2,7
@@
package TestClassLoaded2;
use strict;
use warnings;
+our $VERSION = 42;
1;