mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
Start work on some funational tests
This commit is contained in:
13
RIGS/test_functional.py
Normal file
13
RIGS/test_functional.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user