From 86ba1b4780fe277669b96c4eb64c75be264cd6dd Mon Sep 17 00:00:00 2001 From: Tom Price Date: Wed, 1 Apr 2015 17:26:06 +0100 Subject: [PATCH] Start work on some funational tests --- RIGS/test_functional.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 RIGS/test_functional.py diff --git a/RIGS/test_functional.py b/RIGS/test_functional.py new file mode 100644 index 00000000..aa851bf0 --- /dev/null +++ b/RIGS/test_functional.py @@ -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") \ No newline at end of file