本文整理匯總了Python中multiproject.common.projects.Project.validate方法的典型用法代碼示例。如果您正苦於以下問題:Python Project.validate方法的具體用法?Python Project.validate怎麽用?Python Project.validate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類multiproject.common.projects.Project
的用法示例。
在下文中一共展示了Project.validate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_validate
# 需要導入模塊: from multiproject.common.projects import Project [as 別名]
# 或者: from multiproject.common.projects.Project import validate [as 別名]
def test_validate(self):
invalid_identifier = Project(1, u'testi_', u'testi_', u'Long name', 1, None)
toolong_identifier = Project(1, u'asdfghjklqwertyuiopzxcvbnmasdfahg', u'asdfghjklqwertyuiopzxcvbnmasdfahg', u'Long name', 1, None)
# Test invalid identifier
msg = ""
try:
invalid_identifier.validate()
except ProjectValidationException as exc:
msg = exc.value
self.assertTrue(msg.startswith("Identifier can not start or end with underscore"))
# Test too long identifier
msg = ""
try:
toolong_identifier.validate()
except ProjectValidationException as exc:
msg = exc.value
self.assertTrue(msg.startswith("Too long project indentifier. L"))