]> sjero.net Git - wget/blobdiff - tests/Test--post-file.px
Add test to ensure correct return code on --post-file failure
[wget] / tests / Test--post-file.px
diff --git a/tests/Test--post-file.px b/tests/Test--post-file.px
new file mode 100755 (executable)
index 0000000..1c017b7
--- /dev/null
@@ -0,0 +1,23 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+use HTTPTest;
+
+
+###############################################################################
+
+my $cmdline = $WgetTest::WGETPATH . " -d --post-file=nofile http://localhost:{{port}}/";
+
+my $expected_error_code = 3;
+
+
+###############################################################################
+
+my $the_test = HTTPTest->new (name => "Test-missing-file",
+                              cmdline => $cmdline,
+                              errcode => $expected_error_code);
+exit $the_test->run();
+
+# vim: et ts=4 sw=4