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