summaryrefslogtreecommitdiff
path: root/functional_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'functional_tests.py')
-rw-r--r--functional_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/functional_tests.py b/functional_tests.py
new file mode 100644
index 0000000..d9f9595
--- /dev/null
+++ b/functional_tests.py
@@ -0,0 +1,6 @@
+from selenium import webdriver
+
+browser = webdriver.Firefox()
+browser.get('http://localhost:8000')
+
+assert 'Django' in browser.title \ No newline at end of file