This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Test::Harness from ext/ to cpan/
[perl5.git] / ext / Test-Harness / t / lib / EmptyParser.pm
diff --git a/ext/Test-Harness/t/lib/EmptyParser.pm b/ext/Test-Harness/t/lib/EmptyParser.pm
deleted file mode 100644 (file)
index 2f7ec24..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package EmptyParser;
-
-use strict;
-use vars qw(@ISA);
-
-use TAP::Parser ();
-
-@ISA = qw(TAP::Parser);
-
-sub _initialize {
-    shift->_set_defaults;
-}
-
-# this should really be in TAP::Parser itself...
-sub _set_defaults {
-    my $self = shift;
-
-    for my $key (
-        qw( source_class perl_source_class grammar_class
-        iterator_factory_class result_factory_class )
-      )
-    {
-        my $default_method = "_default_$key";
-        $self->$key( $self->$default_method() );
-    }
-
-    return $self;
-}
-
-1;