about summary refs log tree commit diff
path: root/third_party/git/t/t4034/perl/post
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4034/perl/post')
-rw-r--r--third_party/git/t/t4034/perl/post22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/git/t/t4034/perl/post b/third_party/git/t/t4034/perl/post
deleted file mode 100644
index e8b72ef5dc..0000000000
--- a/third_party/git/t/t4034/perl/post
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-
-package Frotz;
-sub new {
-	my ($class, %opts) = @_;
-	return bless { xyzzy => "nitfol", %opts }, $class;
-}
-
-__END__
-=head1 NAME
-
-frotz - Frotz
-
-=head1 SYNOPSIS
-
-  use frotz;
-
-  $nitfol = new Frotz();
-
-=cut