Change 11929 by jhi@alpha on 2001/09/07 11:23:05
Subject: [PATCH MANIFEST, lib/less.t] Add Tests for the less Pragma
From: "chromatic" <[EMAIL PROTECTED]>
Date: Thu, 06 Sep 2001 23:11:44 -0600
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/MANIFEST#540 edit
... //depot/perl/lib/less.t#1 add
... //depot/perl/t/lib/1_compile.t#36 edit
Differences ...
==== //depot/perl/MANIFEST#540 (text) ====
Index: perl/MANIFEST
--- perl/MANIFEST.~1~ Fri Sep 7 05:30:05 2001
+++ perl/MANIFEST Fri Sep 7 05:30:05 2001
@@ -952,6 +952,7 @@
lib/IPC/Open3.t See if IPC::Open3 works
lib/IPC/SysV.t See if IPC::SysV works
lib/less.pm For "use less"
+lib/less.t See if less support works
lib/lib_pm.PL For "use lib", produces lib/lib.pm
lib/Lingua/KO/Hangul/Util/Changes Lingua::KO::Hangul::Util
lib/Lingua/KO/Hangul/Util/README Lingua::KO::Hangul::Util
==== //depot/perl/t/lib/1_compile.t#36 (text) ====
Index: perl/t/lib/1_compile.t
--- perl/t/lib/1_compile.t.~1~ Fri Sep 7 05:30:05 2001
+++ perl/t/lib/1_compile.t Fri Sep 7 05:30:05 2001
@@ -284,6 +284,7 @@
diagnostics
fields
integer
+less
locale
ops
overload
==== //depot/perl/lib/less.t#1 (text) ====
Index: perl/lib/less.t
--- perl/lib/less.t.~1~ Fri Sep 7 05:30:05 2001
+++ perl/lib/less.t Fri Sep 7 05:30:05 2001
@@ -0,0 +1,10 @@
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ push @INC, '../lib';
+}
+
+use Test::More tests => 1;
+
+use_ok( 'less' );
End of Patch.