switch to Moo
Matt S Trout [Sat, 20 Nov 2010 19:56:41 +0000 (19:56 +0000)]
t/buildall.t [deleted file]

diff --git a/t/buildall.t b/t/buildall.t
deleted file mode 100644 (file)
index 8d676ab..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-use Test::More 'no_plan';
-
-use Web::Simple 'Fork';
-
-my @run;
-
-sub Fork::BUILD { push @run, [ FORK => $_[1] ] }
-
-@Knife::ISA = 'Fork';
-
-@Spoon::ISA = 'Knife';
-
-sub Spoon::BUILD { push @run, [ SPOON => $_[1] ] }
-
-bless({}, 'Fork')->BUILDALL('data');
-
-is_deeply(\@run, [ [ FORK => 'data' ] ], 'Single class ok');
-
-@run = ();
-
-bless({}, 'Spoon')->BUILDALL('data');
-
-is_deeply(\@run, [ [ FORK => 'data' ], [ SPOON => 'data' ] ], 'Subclass ok');