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, 22 insertions, 0 deletions
diff --git a/third_party/git/t/t4034/perl/post b/third_party/git/t/t4034/perl/post
new file mode 100644
index 0000000000..e8b72ef5dc
--- /dev/null
+++ b/third_party/git/t/t4034/perl/post
@@ -0,0 +1,22 @@
+#!/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