[Http-webtest-commits] CVS: HTTP-WebTest/bin wt.PL,1.1.1.1,1.2
Brought to you by:
m_ilya,
richardanderson
From: Ilya M. <m_...@us...> - 2002-01-28 10:43:51
|
Update of /cvsroot/http-webtest/HTTP-WebTest/bin In directory usw-pr-cvs1:/tmp/cvs-serv31978/bin Modified Files: wt.PL Log Message: wt program will read test specification from standart input of no wtscript filenames were specified as its arguments Index: wt.PL =================================================================== RCS file: /cvsroot/http-webtest/HTTP-WebTest/bin/wt.PL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** wt.PL 2002/01/24 12:26:33 1.1.1.1 --- wt.PL 2002/01/28 10:43:45 1.2 *************** *** 61,64 **** --- 61,68 ---- report. + This program expects given input file(s) to be in format of wtscript + file. If no files are given then it expects test specification to be + passed via standard input. + See docs mentioned in section L<SEE ALSO|SEE ALSO> for full documentation. *************** *** 123,127 **** } ! pod2usage(1) if @ARGV < 1; my $webtest = HTTP::WebTest->new(); --- 127,131 ---- } ! @ARGV = '-' if @ARGV < 1; my $webtest = HTTP::WebTest->new(); |