瀏覽代碼

test: Add pull test validating when remote_location is not passed

Sijis Aviles 5 年之前
父節點
當前提交
4e75bb1ced
共有 1 個文件被更改,包括 12 次插入0 次删除
  1. 12 0
      dulwich/tests/test_porcelain.py

+ 12 - 0
dulwich/tests/test_porcelain.py

@@ -1007,6 +1007,18 @@ class PullTests(PorcelainTestCase):
         with Repo(self.target_path) as r:
             self.assertEqual(r[b'HEAD'].id, self.repo[b'HEAD'].id)
 
+    def test_no_remote_location(self):
+        outstream = BytesIO()
+        errstream = BytesIO()
+
+        # Pull changes into the cloned repo
+        porcelain.pull(self.target_path, refspecs=b'refs/heads/master',
+                       outstream=outstream, errstream=errstream)
+
+        # Check the target repo for pushed changes
+        with Repo(self.target_path) as r:
+            self.assertEqual(r[b'HEAD'].id, self.repo[b'HEAD'].id)
+
 
 class StatusTests(PorcelainTestCase):