found some lingering List references in the template dir; summarily changed to Note
This commit is contained in:
@@ -7,7 +7,7 @@ from .note_page import NotePage
|
||||
|
||||
class NewVisitorTest(FunctionalTest):
|
||||
# Test methods
|
||||
def test_can_start_a_todo_list(self):
|
||||
def test_can_start_a_note(self):
|
||||
self.create_pre_authenticated_session("alice@test.io")
|
||||
self.browser.get(self.live_server_url)
|
||||
note_page = NotePage(self)
|
||||
@@ -17,7 +17,7 @@ class NewVisitorTest(FunctionalTest):
|
||||
self.assertIn('Welcome', header_text)
|
||||
|
||||
inputbox = note_page.get_item_input_box()
|
||||
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')
|
||||
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a note item')
|
||||
|
||||
inputbox.send_keys('Buy peacock feathers')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user