From: Dave Rolsky Date: Wed, 29 Dec 2010 15:37:38 +0000 (-0500) Subject: Add $VERSION back to test classes (accidentally removed in dzilification) X-Git-Tag: 1.9900~3^2~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0b0e3d91a60361c5e11a91a21ef3282e5c11e927;p=gitmo%2FMoose.git Add $VERSION back to test classes (accidentally removed in dzilification) --- diff --git a/t/001_cmop/lib/BinaryTree.pm b/t/001_cmop/lib/BinaryTree.pm index 9933b19..539800a 100644 --- 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 --- 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;