1234567891011121314151617181920212223 |
- from django.test.client import RequestFactory
- from django.urls import reverse
- from fixtures.apidocs_test_case import APIDocsTestCase
- class TeamsProjectsDocs(APIDocsTestCase):
- def setUp(self):
- team = self.create_team(organization=self.organization)
- self.create_project(name="foo", organization=self.organization, teams=[team])
- self.url = reverse(
- "sentry-api-0-team-project-index",
- kwargs={"organization_slug": self.organization.slug, "team_slug": team.slug},
- )
- self.login_as(user=self.user)
- def test_get(self):
- response = self.client.get(self.url)
- request = RequestFactory().get(self.url)
- self.validate_schema(request, response)
|