# HG changeset patch # User Augie Fackler # Date 2017-08-04 19:49:36 # Node ID 970967e0a917d73ae76870c1533b8a32bdbf7285 # Parent 50c44dee741ab99401bf0b3446fe4ae88ccd0bb2 http: add a test of actually pushing with httppostargs This was previously untested. Sigh. Differential Revision: https://phab.mercurial-scm.org/D230 diff --git a/tests/test-push-http.t b/tests/test-push-http.t --- a/tests/test-push-http.t +++ b/tests/test-push-http.t @@ -172,4 +172,20 @@ expect authorization error: some users d % serve errors [255] + $ cat > .hg/hgrc < [web] + > push_ssl = false + > allow_push = * + > [experimental] + > httppostargs=true + > EOF + $ req + pushing to http://localhost:$HGPORT/ + searching for changes + remote: adding changesets + remote: adding manifests + remote: adding file changes + remote: added 1 changesets with 1 changes to 1 files + % serve errors + $ cd ..