Failing test for Moose::Object namespace pollution
Yuval Kogman [Thu, 17 Sep 2009 11:54:51 +0000 (14:54 +0300)]
Checks that Moose::object and derived classes don't pollute the method
namespace with exports (regardless of whether or not there are meta
method objects for these)

t/010_basics/001_basic_class_setup.t

index 00d709c..16ef006 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 22;
+use Test::More tests => 30;
 use Test::Exception;
 
 
@@ -42,3 +42,14 @@ foreach my $function (qw(
     ok(!Foo->meta->has_method($function), '... the meta does not treat "' . $function . '" as a method');
 }
 
+foreach my $import (qw(
+    blessed
+    try
+    catch
+    in_global_destruction
+)) {
+    ok(!Moose::Object->can($import), "no namespace pollution in Moose::Object ($import)" );
+
+    local $TODO = $import eq 'blessed' ? "no automatic namespace cleaning yet" : undef;
+    ok(!Foo->can($import), "no namespace pollution in Moose::Object ($import)" );
+}