Mastodonplus.py/tests/conftest.py

33 líneas
842 B
Python
Original Vista normal Històric

import pytest
@pytest.fixture
def api():
import mastodon
return mastodon.Mastodon(
api_base_url='http://localhost:3000',
client_id='__MASTODON_PY_TEST_ID',
client_secret='__MASTODON_PY_TEST_SECRET',
access_token='__MASTODON_PY_TEST_TOKEN')
2017-11-27 14:19:21 +01:00
@pytest.fixture
def api_anonymous():
import mastodon
return mastodon.Mastodon(
2017-11-27 14:19:21 +01:00
api_base_url='http://localhost:3000',
client_id='__MASTODON_PY_TEST_ID',
client_secret='__MASTODON_PY_TEST_SECRET')
@pytest.fixture()
def status(api):
_status = api.status_post('Toot!')
yield _status
api.status_delete(_status['id'])
@pytest.fixture()
def vcr_config():
return dict(
match_on = ['method', 'path', 'query', 'body'],
decode_compressed_response = True
)