本文整理汇总了Python中vcstools.bzr.BzrClient.get_status方法的典型用法代码示例。如果您正苦于以下问题:Python BzrClient.get_status方法的具体用法?Python BzrClient.get_status怎么用?Python BzrClient.get_status使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vcstools.bzr.BzrClient
的用法示例。
在下文中一共展示了BzrClient.get_status方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_status_untracked
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_status [as 别名]
def test_status_untracked(self):
client = BzrClient(self.local_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
self.assertEquals('? ./added-fs.txt\n+N ./added.txt\n D ./deleted-fs.txt\n-D ./deleted.txt\n M ./modified-fs.txt\n M ./modified.txt\n', client.get_status(untracked=True))
示例2: test_status_relpath
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_status [as 别名]
def test_status_relpath(self):
client = BzrClient(self.local_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
self.assertEquals('+N local/added.txt\n D local/deleted-fs.txt\n-D local/deleted.txt\n M local/modified-fs.txt\n M local/modified.txt\n', client.get_status(basepath=os.path.dirname(self.local_path)))
示例3: test_status_untracked
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_status [as 别名]
def test_status_untracked(self):
from vcstools.bzr import BzrClient
client = BzrClient(self.readonly_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
self.assertEquals('? ./added-fs.txt\n+N ./added.txt\n D ./deleted-fs.txt\n-D ./deleted.txt\n M ./modified-fs.txt\n M ./modified.txt\n', client.get_status(untracked=True))
示例4: testStatusClean
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_status [as 别名]
def testStatusClean(self):
client = BzrClient(self.remote_path)
self.assertEquals('', client.get_status())
示例5: test_status_relpath
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import get_status [as 别名]
def test_status_relpath(self):
from vcstools.bzr import BzrClient
client = BzrClient(self.readonly_path)
self.assertTrue(client.path_exists())
self.assertTrue(client.detect_presence())
self.assertEquals('+N readonly/added.txt\n D readonly/deleted-fs.txt\n-D readonly/deleted.txt\n M readonly/modified-fs.txt\n M readonly/modified.txt\n', client.get_status(basepath=os.path.dirname(self.readonly_path)))