We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26cc5c8 commit 452f05eCopy full SHA for 452f05e
tests/unit/test_vcs.py
@@ -908,6 +908,19 @@ def test_fetch_new_quiet(self) -> None:
908
update_submodules_mock.assert_called_with(self.dest, verbosity=0)
909
910
911
+class TestMercurialArgs(TestCase):
912
+ def setUp(self) -> None:
913
+ patcher = mock.patch("pip._internal.vcs.versioncontrol.call_subprocess")
914
+ self.addCleanup(patcher.stop)
915
+ self.call_subprocess_mock = patcher.start()
916
+
917
+ # Test Data.
918
+ self.url = "hg+http://username:[email protected]/"
919
+ self.svn = Mercurial()
920
+ self.rev_options = RevOptions(Mercurial)
921
+ self.dest = "/tmp/test"
922
923
924
class TestSubversionArgs(TestCase):
925
def setUp(self) -> None:
926
patcher = mock.patch("pip._internal.vcs.versioncontrol.call_subprocess")
0 commit comments