检查是否调用了视图函数

时间:2019-02-25 18:55:29

标签: python django python-3.x unit-testing testing

我想测试我的JS计时器是否运行我的超时视图:

    def testTimeLimit(self):
      self.client.get('/')
      response = self.client.get('/new',follow = True)
      sleep(2)
      #Assertion that checks if timeout view was called

如何按时间顺序检查会话中调用了哪些视图函数?我知道这个测试很容易在硒中完成,但是使用django.test.TestCase是否可以?

0 个答案:

没有答案