diff options
-rw-r--r-- | tests/test_reports.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_reports.py b/tests/test_reports.py new file mode 100644 index 0000000..037b2ba --- /dev/null +++ b/tests/test_reports.py | |||
@@ -0,0 +1,8 @@ | |||
1 | import pytest | ||
2 | |||
3 | @pytest.mark.vcr() | ||
4 | def test_report(api, status): | ||
5 | user = api.account_verify_credentials().id | ||
6 | report = api.report(user, status, "makes the bad post") | ||
7 | assert report in api.reports() | ||
8 | \ No newline at end of file | ||