aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/conftest.py (renamed from tests/fixtures.py)3
-rw-r--r--tests/test_hooks.py2
-rw-r--r--tests/test_instance.py1
3 files changed, 2 insertions, 4 deletions
diff --git a/tests/fixtures.py b/tests/conftest.py
index 1b32866..1858ab8 100644
--- a/tests/fixtures.py
+++ b/tests/conftest.py
@@ -9,14 +9,13 @@ def mastodon():
9 client_secret='__MASTODON_PY_TEST_SECRET', 9 client_secret='__MASTODON_PY_TEST_SECRET',
10 access_token='__MASTODON_PY_TEST_TOKEN') 10 access_token='__MASTODON_PY_TEST_TOKEN')
11 11
12
13
14@pytest.fixture() 12@pytest.fixture()
15def status(mastodon): 13def status(mastodon):
16 _status = mastodon.status_post('Toot!') 14 _status = mastodon.status_post('Toot!')
17 yield _status 15 yield _status
18 mastodon.status_delete(_status['id']) 16 mastodon.status_delete(_status['id'])
19 17
18
20@pytest.fixture() 19@pytest.fixture()
21def vcr_config(): 20def vcr_config():
22 return dict( 21 return dict(
diff --git a/tests/test_hooks.py b/tests/test_hooks.py
index fe242a6..132021b 100644
--- a/tests/test_hooks.py
+++ b/tests/test_hooks.py
@@ -1,4 +1,4 @@
1from .fixtures import * 1import pytest
2from datetime import datetime 2from datetime import datetime
3 3
4@pytest.mark.vcr() 4@pytest.mark.vcr()
diff --git a/tests/test_instance.py b/tests/test_instance.py
index d6f1bed..3ea3cf1 100644
--- a/tests/test_instance.py
+++ b/tests/test_instance.py
@@ -1,4 +1,3 @@
1from .fixtures import *
2import pytest 1import pytest
3 2
4@pytest.mark.vcr() 3@pytest.mark.vcr()
Powered by cgit v1.2.3 (git 2.41.0)