test_project_stats.py 683 B

1234567891011121314151617181920212223
  1. from django.test.client import RequestFactory
  2. from django.urls import reverse
  3. from fixtures.apidocs_test_case import APIDocsTestCase
  4. class ProjectStatsDocs(APIDocsTestCase):
  5. def setUp(self):
  6. self.create_event("a", message="oh no")
  7. self.create_event("b", message="oh no")
  8. self.url = reverse(
  9. "sentry-api-0-project-stats",
  10. kwargs={"organization_slug": self.organization.slug, "project_slug": self.project.slug},
  11. )
  12. self.login_as(user=self.user)
  13. def test_get(self):
  14. response = self.client.get(self.url)
  15. request = RequestFactory().get(self.url)
  16. self.validate_schema(request, response)