6

在使用 python 书进行测试驱动开发之后,我被卡住了,我尝试了几种不同的导入,但仍然没有..有人吗?

错误

$python manage.py test functional_tests
ERROR: test_can_start_a_list_and_retrieve_it_later (functional_tests.tests.NewVisitorTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/coelhao/DjangoProjects/superlists/functional_tests/tests.py", line 45, in
test_can_start_a_list_and_retrieve_it_later
self.assertRegex(edith_list_url, '/lists/.+') AttributeError: 'NewVisitorTest' object has no attribute 'assertRegex' 

代码

from django.test import LiveServerTestCase
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import unittest

class NewVisitorTest(LiveServerTestCase):

    def setUp(self):
        self.browser = webdriver.Firefox()
        self.browser.implicitly_wait(3)

    def tearDown(self):
        self.browser.quit()

    def test_can_start_a_list_and_retrieve_it_later(self):
        # .....

        # When she hits enter, the page updates, and now the page lists
        # "1: Buy peacock feathers" as an item in a to-do list table
        inputbox.send_keys(Keys.ENTER)
        edith_list_url = self.browser.current_url
        self.assertRegex(edith_list_url, '/lists/.+')
        self.check_for_row_in_list_table('1: Buy peacock feathers')

        # .... 
4

2 回答 2

15

我假设您使用的是 Python 2 - 然后使用assertRegexpMatches而不是assertRegex.

assertRegex在 Python 3 中引入:

在 3.2 版更改: 方法 assertRegexpMatches() 已重命名为 assertRegex()。

于 2013-08-16T20:39:10.203 回答
0

没有这样的断言assertRegex——也许你的意思是assertRegexMatches

单元测试文档在这里:http ://docs.python.org/2.7/library/unittest.html#unittest.TestCase

于 2013-08-16T20:39:28.487 回答