本文整理汇总了Python中plainbox.impl.job.JobDefinition.tr_description方法的典型用法代码示例。如果您正苦于以下问题:Python JobDefinition.tr_description方法的具体用法?Python JobDefinition.tr_description怎么用?Python JobDefinition.tr_description使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类plainbox.impl.job.JobDefinition
的用法示例。
在下文中一共展示了JobDefinition.tr_description方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_tr_description
# 需要导入模块: from plainbox.impl.job import JobDefinition [as 别名]
# 或者: from plainbox.impl.job.JobDefinition import tr_description [as 别名]
def test_tr_description(self):
"""
Verify that Provider1.tr_description() works as expected
"""
job = JobDefinition(self._full_record.data)
with mock.patch.object(job, "get_normalized_translated_data") as mgntd:
retval = job.tr_description()
# Ensure that get_translated_data() was called
mgntd.assert_called_once_with(job.description)
# Ensure tr_description() returned its return value
self.assertEqual(retval, mgntd())