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 630b21c commit 77a8cd5Copy full SHA for 77a8cd5
tests/unit/test_vcs.py
@@ -819,6 +819,19 @@ def test_fetch_new_very_verbose(self) -> None:
819
)
820
821
822
+class TestGitArgs(TestCase):
823
+ def setUp(self) -> None:
824
+ patcher = mock.patch("pip._internal.vcs.versioncontrol.call_subprocess")
825
+ self.addCleanup(patcher.stop)
826
+ self.call_subprocess_mock = patcher.start()
827
+
828
+ # Test Data.
829
+ self.url = "git+http://username:[email protected]/"
830
+ self.svn = Git()
831
+ self.rev_options = RevOptions(Git)
832
+ self.dest = "/tmp/test"
833
834
835
class TestSubversionArgs(TestCase):
836
def setUp(self) -> None:
837
patcher = mock.patch("pip._internal.vcs.versioncontrol.call_subprocess")
0 commit comments