projects
/
catagits/fcgi2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9aa25e6
)
add minimal test
skimo [Sun, 15 Dec 2002 20:03:28 +0000 (20:03 +0000)]
perl/MANIFEST
patch
|
blob
|
blame
|
history
perl/test.pl
[new file with mode: 0644]
patch
|
blob
diff --git
a/perl/MANIFEST
b/perl/MANIFEST
index
94aeec4
..
07ded82
100644
(file)
--- a/
perl/MANIFEST
+++ b/
perl/MANIFEST
@@
-10,6
+10,7
@@
configure.readme
echo.PL
fcgi_config.h.in
remote.PL
+test.pl
threaded.PL
typemap
version.pm
diff --git a/perl/test.pl
b/perl/test.pl
new file mode 100644
(file)
index 0000000..
530a011
--- /dev/null
+++ b/
perl/test.pl
@@ -0,0
+1,4
@@
+use Test;
+BEGIN { plan tests => 1 };
+use FCGI;
+ok(1); # If we made it this far, we're ok.