当前位置: 首页>>代码示例>>Python>>正文


Python BzrClient.get_diff方法代码示例

本文整理汇总了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"))
开发者ID:130s,项目名称:dry_prerelease_job_generator,代码行数:9,代码来源:test_bzr.py

示例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"))
开发者ID:btubbs,项目名称:vcstools,代码行数:10,代码来源:test_bzr.py

示例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())
开发者ID:btubbs,项目名称:vcstools,代码行数:5,代码来源:test_bzr.py


注:本文中的vcstools.bzr.BzrClient.get_diff方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。