summaryrefslogtreecommitdiff
path: root/t/t4034/perl/post
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2011-01-18 09:43:43 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-01-18 09:44:22 -0800
commit5269edf1702b7375a287d5bbbb3c1b1f3a8aa765 (patch)
tree0bb0b853db6868d2998a81ef7c0f75f7abfbf346 /t/t4034/perl/post
parentt4034 (diff --word-diff): style suggestions (diff)
downloadtgif-5269edf1702b7375a287d5bbbb3c1b1f3a8aa765.tar.xz
t4034 (diff --word-diff): add a minimum Perl drier test vector
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4034/perl/post')
-rw-r--r--t/t4034/perl/post22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/t4034/perl/post b/t/t4034/perl/post
new file mode 100644
index 0000000000..e8b72ef5dc
--- /dev/null
+++ b/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