Submitter | Augie Fackler |
---|---|
Date | Aug. 25, 2016, 5:29 a.m. |
Message ID | <f4d18b053d9d6705057e.1472102944@imladris.local> |
Download | mbox | patch |
Permalink | /patch/16410/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -573,3 +573,7 @@ def has_hypothesis(): return True except ImportError: return False + +@check("unziplinks", "unzip(1) understands and extracts symlinks") +def unzip_understands_symlinks(): + return matchoutput('unzip --help', br'Info-ZIP')