本文整理汇总了Python中models.Issue.render_simple方法的典型用法代码示例。如果您正苦于以下问题:Python Issue.render_simple方法的具体用法?Python Issue.render_simple怎么用?Python Issue.render_simple使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Issue
的用法示例。
在下文中一共展示了Issue.render_simple方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_issue
# 需要导入模块: from models import Issue [as 别名]
# 或者: from models.Issue import render_simple [as 别名]
def test_issue(self):
issue = Issue(
user=self.user,
project=self.project,
id=42,
title="Wrong encoding",
action="opened",
url="http://bugtracker.example.com/issue/42"
)
self.assertEqual(
issue.render_simple(),
"[My Project] Mrs Foobar opened issue #42: Wrong encoding. "
"(http://bugtracker.example.com/issue/42)"
)