aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_account.py')
-rw-r--r--tests/test_account.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_account.py b/tests/test_account.py
index 9821c13..55f766f 100644
--- a/tests/test_account.py
+++ b/tests/test_account.py
@@ -7,7 +7,13 @@ def test_account(api):
7 account = api.account(1) 7 account = api.account(1)
8 assert account 8 assert account
9 9
10 10@pytest.mark.vcr()
11def test_verify_credentials(api):
12 account_a = api.account_verify_credentials()
13 account_b = api.me()
14
15 assert account_a.id == account_b.id
16
11@pytest.mark.vcr() 17@pytest.mark.vcr()
12def test_account_following(api): 18def test_account_following(api):
13 following = api.account_following(1) 19 following = api.account_following(1)
Powered by cgit v1.2.3 (git 2.41.0)