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 @@ +import pytest + +@pytest.mark.vcr() +def test_report(api, status): + user = api.account_verify_credentials().id + report = api.report(user, status, "makes the bad post") + assert report in api.reports() + \ No newline at end of file