本文整理汇总了Python中vcstools.bzr.BzrClient.url_matches方法的典型用法代码示例。如果您正苦于以下问题:Python BzrClient.url_matches方法的具体用法?Python BzrClient.url_matches怎么用?Python BzrClient.url_matches使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vcstools.bzr.BzrClient
的用法示例。
在下文中一共展示了BzrClient.url_matches方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_url_matches_with_shortcut
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import url_matches [as 别名]
def test_url_matches_with_shortcut(self):
# bzr on launchpad should have shared repository
client = BzrClient(self.local_path)
url = 'lp:bzr'
url2 = self.get_launchpad_info(url)
self.assertFalse(url2 is None)
self.assertTrue(client.url_matches(url2, url), "%s~=%s" % (url, url2))
# launchpad on launchpad should be a branch root
url = 'lp:launchpad'
url2 = self.get_launchpad_info(url)
self.assertFalse(url2 is None)
self.assertTrue(client.url_matches(url2, url), "%s~=%s" % (url, url2))
示例2: test_url_matches_with_shortcut_strings_slashes
# 需要导入模块: from vcstools.bzr import BzrClient [as 别名]
# 或者: from vcstools.bzr.BzrClient import url_matches [as 别名]
def test_url_matches_with_shortcut_strings_slashes(self):
client = BzrClient(self.local_path)
self.assertTrue(client.url_matches('test1234/', 'test1234'))
self.assertTrue(client.url_matches('test1234', 'test1234/'))
self.assertTrue(client.url_matches('test1234/', 'test1234/'))