We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864eafc commit b6cc295Copy full SHA for b6cc295
1 file changed
tests/test_svn_vcs.py
@@ -11,6 +11,7 @@ def test_export_with_revision_passes_correct_args():
11
"""export() must produce the exact expected SVN command."""
12
with patch("dfetch.vcs.svn.run_on_cmdline") as mock_run:
13
SvnRepo.export("svn://example.com/repo", rev="12345", dst="/tmp/out")
14
+ mock_run.assert_called_once()
15
assert mock_run.call_args[0][1] == [
16
"svn",
17
"export",
@@ -27,6 +28,7 @@ def test_export_without_revision_omits_revision_args():
27
28
"""export() with no revision must produce the exact expected SVN command."""
29
30
SvnRepo.export("svn://example.com/repo", dst="/tmp/out")
31
32
33
34
0 commit comments