Switch all module loading to Module::Runtime
[p5sagit/Class-Accessor-Grouped.git] / t / lib / BaseInheritedGroups.pm
index 1f63f0f..14f0d62 100644 (file)
@@ -3,10 +3,10 @@ use strict;
 use warnings;
 use base 'Class::Accessor::Grouped';
 
-__PACKAGE__->mk_group_accessors('inherited', 'basefield');
+__PACKAGE__->mk_group_accessors('inherited', 'basefield', 'undefined');
 
 sub new {
-    return bless {}, shift;
+  return bless {}, shift;
 };
 
 1;