After test development with python book I got stuck I tried several different imports but still nothing ... anyone?
Error
$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'
code
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):
source share