diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-25 22:41:14 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-25 22:41:14 +0100 |
commit | 1f6d284eda9c9d08fc3b805f751398f937961eb1 (patch) | |
tree | 23ff21379b799c7c191592e79a17fe6e8f8a5f78 /ctrack/core/tests/test_functional.py | |
parent | fac76c9e24f38bdc7509e4909e5eaa842c151488 (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.py | 11 |
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 |