Files
PyRIGS/RIGS/test_functional.py
2015-04-01 17:26:06 +01:00

13 lines
277 B
Python

from django.test import LiveServerTestCase
from selenium import webdriver
class UserRegistrationTest(LiveServerTestCase):
def setUp(self):
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
def test_false(self):
self.assertFail("Finish me")