aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core/tests/test_functional.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-05-25 22:41:14 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-05-25 22:41:14 +0100
commit1f6d284eda9c9d08fc3b805f751398f937961eb1 (patch)
tree23ff21379b799c7c191592e79a17fe6e8f8a5f78 /ctrack/core/tests/test_functional.py
parentfac76c9e24f38bdc7509e4909e5eaa842c151488 (diff)
added geckodriver to root and part way through failing users view func test
Diffstat (limited to 'ctrack/core/tests/test_functional.py')
-rw-r--r--ctrack/core/tests/test_functional.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/ctrack/core/tests/test_functional.py b/ctrack/core/tests/test_functional.py
index a802f22..6661072 100644
--- a/ctrack/core/tests/test_functional.py
+++ b/ctrack/core/tests/test_functional.py
@@ -1,14 +1,3 @@
-import pytest
-from selenium import webdriver
-
-
-@pytest.fixture
-def browser():
- b = webdriver.Firefox()
- yield b
- b.quit()
-
-
def test_can_get_homepage(browser):
browser.get("http://localhost:8000")
assert "ctrack" in browser.title