当前位置: 首页>>代码示例>>Python>>正文


Python PostponedTaskPrototype._db_latest方法代码示例

本文整理汇总了Python中the_tale.common.postponed_tasks.PostponedTaskPrototype._db_latest方法的典型用法代码示例。如果您正苦于以下问题:Python PostponedTaskPrototype._db_latest方法的具体用法?Python PostponedTaskPrototype._db_latest怎么用?Python PostponedTaskPrototype._db_latest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在the_tale.common.postponed_tasks.PostponedTaskPrototype的用法示例。


在下文中一共展示了PostponedTaskPrototype._db_latest方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_success_multiply_accoutns

# 需要导入模块: from the_tale.common.postponed_tasks import PostponedTaskPrototype [as 别名]
# 或者: from the_tale.common.postponed_tasks.PostponedTaskPrototype import _db_latest [as 别名]
    def test_success_multiply_accoutns(self):
        with self.check_delta(PostponedTaskPrototype._db_count, 1):
            self.check_ajax_processing(self.post_ajax_json(url('accounts:messages:create'), {'text': 'test-message', 'recipients': ('%d,%d' % (self.account2.id, self.account3.id))}))

        task = PostponedTaskPrototype._db_latest()

        self.assertEqual(task.internal_logic.message, 'test-message')
        self.assertEqual(task.internal_logic.account_id, self.account1.id)
        self.assertEqual(task.internal_logic.recipients, [self.account2.id, self.account3.id])
开发者ID:Alkalit,项目名称:the-tale,代码行数:11,代码来源:test_requests.py

示例2: test_success

# 需要导入模块: from the_tale.common.postponed_tasks import PostponedTaskPrototype [as 别名]
# 或者: from the_tale.common.postponed_tasks.PostponedTaskPrototype import _db_latest [as 别名]
    def test_success(self):

        with mock.patch('the_tale.accounts.workers.accounts_manager.Worker.cmd_task') as cmd_task:
            with self.check_delta(PostponedTaskPrototype._db_count, 1):
                self.check_ajax_processing(self.post_ajax_json(url('accounts:messages:create'), {'text': 'test-message', 'recipients': self.account2.id}))

        task = PostponedTaskPrototype._db_latest()

        self.assertEqual(cmd_task.call_args_list, [mock.call(task.id)])

        self.assertEqual(task.internal_logic.message, 'test-message')
        self.assertEqual(task.internal_logic.account_id, self.account1.id)
        self.assertEqual(task.internal_logic.recipients, [self.account2.id])
开发者ID:Alkalit,项目名称:the-tale,代码行数:15,代码来源:test_requests.py

示例3: test_success

# 需要导入模块: from the_tale.common.postponed_tasks import PostponedTaskPrototype [as 别名]
# 或者: from the_tale.common.postponed_tasks.PostponedTaskPrototype import _db_latest [as 别名]
 def test_success(self):
     with self.check_delta(PostponedTaskPrototype._db_count, 1):
         response = self.post_ajax_json(url('accounts:transfer-money', self.account_2.id), self.post_data())
     task = PostponedTaskPrototype._db_latest()
     self.check_ajax_processing(response, task.status_url)
开发者ID:Alkalit,项目名称:the-tale,代码行数:7,代码来源:test_requests_account.py


注:本文中的the_tale.common.postponed_tasks.PostponedTaskPrototype._db_latest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。