diff -r 922e087ba158 -r 07fafcd4bc74 tests/hghave.py --- a/tests/hghave.py Wed Mar 04 22:27:01 2015 +0900 +++ b/tests/hghave.py Wed Mar 04 22:41:48 2015 +0900 @@ -320,6 +320,11 @@ except ImportError: return False +@check("defaultcacerts", "can verify SSL certs by system's CA certs store") +def has_defaultcacerts(): + from mercurial import sslutil + return sslutil._defaultcacerts() + @check("windows", "Windows") def has_windows(): return os.name == 'nt'