本文整理汇总了Python中callisto.delivery.models.Report.id方法的典型用法代码示例。如果您正苦于以下问题:Python Report.id方法的具体用法?Python Report.id怎么用?Python Report.id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类callisto.delivery.models.Report
的用法示例。
在下文中一共展示了Report.id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_wizard_done_is_called
# 需要导入模块: from callisto.delivery.models import Report [as 别名]
# 或者: from callisto.delivery.models.Report import id [as 别名]
def test_wizard_done_is_called(self, mockReport):
mock_report = Report()
mock_report.id = 1
mock_report.owner = self.request.user
mockReport.return_value = mock_report
wizard = EncryptedFormWizard.wizard_factory()()
PageOneForm = wizard.form_list[0]
PageTwoForm = wizard.form_list[1]
KeyForm = wizard.form_list[2]
page_one = PageOneForm({'question_%i' % self.question1.pk: ""})
page_one.is_valid()
page_two = PageTwoForm({'question_%i' % self.question2.pk: ""})
page_two.is_valid()
key_form = KeyForm({'key': self.report_key, 'key2': self.report_key})
key_form.is_valid()
form_list = [page_one, page_two, key_form]
wizard.processed_answers = wizard.process_answers(form_list=form_list, form_dict=dict(enumerate(form_list)))
response = wizard.done(form_list=form_list, form_dict=dict(enumerate(form_list)), request=self.request)
self.assertContains(response, 1)