Rev 67: Implement Branch.get_stacked_on_url. in http://people.samba.org/bzr/jelmer/bzr-git/trunk

Jelmer Vernooij jelmer at samba.org
Sat Jul 26 17:27:43 BST 2008


At http://people.samba.org/bzr/jelmer/bzr-git/trunk

------------------------------------------------------------
revno: 67
revision-id: jelmer at samba.org-20080726154107-hbyntvzp13k7j88k
parent: jelmer at samba.org-20080726154015-pc36gdnim70ny61l
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Sat 2008-07-26 17:41:07 +0200
message:
  Implement Branch.get_stacked_on_url.
modified:
  git_branch.py                  git_branch.py-20071108230535-su8dxk529f4uk9fx-2
  tests/test_git_branch.py       test_git_branch.py-20071108234408-ygidvy5hviixghsd-3
=== modified file 'git_branch.py'
--- a/git_branch.py	2008-07-26 15:40:15 +0000
+++ b/git_branch.py	2008-07-26 15:41:07 +0000
@@ -71,6 +71,9 @@
         """See Branch.get_parent()."""
         return None
 
+    def get_stacked_on_url(self):
+        return None
+
     def _gen_revision_history(self):
         if self.head is None:
             return []

=== modified file 'tests/test_git_branch.py'
--- a/tests/test_git_branch.py	2008-07-26 15:40:15 +0000
+++ b/tests/test_git_branch.py	2008-07-26 15:41:07 +0000
@@ -81,3 +81,6 @@
 
     def test_get_parent(self):
         self.assertIs(None, self.git_branch.get_parent())
+
+    def test_get_stacked_on_url(self):
+        self.assertIs(None, self.git_branch.get_stacked_on_url())




More information about the bazaar-commits mailing list