本文整理汇总了Python中vcstools.bzr.BzrClient.get_diff方法的典型用法代码示例。如果您正苦于以下问题:Python BzrClient.get_diff方法的具体用法?Python BzrClient.get_diff怎么用?Python BzrClient.get_diff使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vcstools.bzr.BzrClient
的用法示例。
在下文中一共展示了BzrClient.get_diff方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_diff_relpath
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_diff [as 别名]
def test_diff_relpath(self):
from vcstools.bzr import BzrClient
client = BzrClient(self.readonly_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
# using fnmatch because date and time change (remove when bzr introduces diff --format)
self.assertTrue(fnmatch.fnmatch(client.get_diff(basepath=os.path.dirname(self.readonly_path)), "=== added file 'added.txt'\n--- readonly/added.txt\t????-??-?? ??:??:?? +0000\n+++ readonly/added.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file\n\n=== removed file 'deleted-fs.txt'\n=== removed file 'deleted.txt'\n=== modified file 'modified-fs.txt'\n--- readonly/modified-fs.txt\t????-??-?? ??:??:?? +0000\n+++ readonly/modified-fs.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file\n\n=== modified file 'modified.txt'\n--- readonly/modified.txt\t????-??-?? ??:??:?? +0000\n+++ readonly/modified.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file\n\n"))
示例2: test_diff_relpath
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_diff [as 别名]
def test_diff_relpath(self):
client = BzrClient(self.local_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
# using fnmatch because date and time change (remove when bzr introduces diff --format)
diff = client.get_diff(basepath=os.path.dirname(self.local_path))
self.assertTrue(diff is not None)
self.assertTrue(fnmatch.fnmatch(diff, "=== added file 'added.txt'\n--- local/added.txt\t????-??-?? ??:??:?? +0000\n+++ local/added.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file\n\n=== removed file 'deleted-fs.txt'\n=== removed file 'deleted.txt'\n=== modified file 'modified-fs.txt'\n--- local/modified-fs.txt\t????-??-?? ??:??:?? +0000\n+++ local/modified-fs.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file\n\n=== modified file 'modified.txt'\n--- local/modified.txt\t????-??-?? ??:??:?? +0000\n+++ local/modified.txt\t????-??-?? ??:??:?? +0000\[email protected]@ -0,0 +1,1 @@\n+0123456789abcdef\n\\ No newline at end of file"))
示例3: testDiffClean
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_diff [as 别名]
def testDiffClean(self):
client = BzrClient(self.remote_path)
self.assertEquals('', client.get_diff())