OpenSlides/tests/unit/utils/test_views.py

23 lines
647 B
Python
Raw Normal View History

from unittest import TestCase
from openslides.utils import views
class TestAPIView(TestCase):
def test_class_creation(self):
"""
Tests that the APIView has all relevant methods
"""
2019-01-06 16:22:33 +01:00
http_methods = set(
("get", "post", "put", "patch", "delete", "head", "options", "trace")
)
self.assertTrue(
http_methods.issubset(views.APIView.__dict__),
2019-01-06 16:22:33 +01:00
"All http methods should be defined in the APIView",
)
self.assertFalse(
2019-01-06 16:22:33 +01:00
hasattr(views.APIView, "method_call"),
"The APIView should not have the method 'method_call'",
)