This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
class User: | |
number = 1 | |
articles = [] | |
# def __init__(self): | |
# self.number = 1 | |
# self.articles = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from selenium import webdriver | |
import unittest | |
class FuncitonalTest(unittest.TestCase): | |
def test_first_ft(self): | |
browser = webdriver.Chrome() | |
browser.get('http://localhost:8000') |
NewerOlder