blob: f05a0233a8465c2f05cdf2b2589028b2ce8e91f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import pytest
@pytest.mark.vcr()
def test_search(api):
results = api.search_v1('mastodonpy_test')
assert isinstance(results, dict)
results = api.search_v2('mastodonpy_test')
assert isinstance(results, dict)
results = api.search('mastodonpy_test')
assert isinstance(results, dict)
results = api.search('mastodonpy_test', result_type="statuses")
assert isinstance(results, dict)
assert len(results["hashtags"]) == 0
assert len(results["accounts"]) == 0
|