Skip to content

Instantly share code, notes, and snippets.

@xiantail
Last active December 30, 2015 11:32
Show Gist options
  • Save xiantail/dc0553755ea8703968a0 to your computer and use it in GitHub Desktop.
Save xiantail/dc0553755ea8703968a0 to your computer and use it in GitHub Desktop.
TDD with Python / Chapter 2 After improvement
from selenium import webdriver
import unittest
class NewVistorTest(unittest.TestCase):
def setUp(self): #2
self.browser = webdriver.Firefox()
self.browser.implicitly_wait(3)
def tearDown(self): #3
self.browser.quit()
def test_can_start_a_list_and_retrive_it_later(self): #4
# Edith has heard about a cool new onlie to-do app. She goes
# to check out its homepage
self.browser.get('localhost:8000')
# She notices the page title and header mention to-do lists
self.assertIn("To-Do", self.browser.title) #5
self.fail('Finish the test') #6
# She is invited to enter a to-do item straight away
# She types "Buy peacock feathers" into a text box (Edith's hobby
# is tying fly-fishing lures)
# When she hits enter, the page updates, and now the page lists
# "1: Buy peacock feathers" as an item in a to-do list
# There is still a text box inviting her to add another item. She
# enters "Use peacock feathers to make a fly" (Edith is very methodical)
# The page updates again, and now shows both items on her list
# Edith wonders whether the site will remember her list. Then she sees
# that the site has generated a unique URL for -- there is some
# explanatory text to that effect.
# She visits that URL - her to-do list is still there
# Satisfied, she goes back to sleep
if __name__ == '__main__': #7
unittest.main(warnings='ignore') #8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment