authentik.api.tests.test_view_authn_authz
1from collections.abc import Callable 2from inspect import getmembers 3 4from django.urls import reverse 5from rest_framework.test import APITestCase 6from rest_framework.views import APIView 7from rest_framework.viewsets import GenericViewSet 8 9from authentik.lib.utils.reflection import all_subclasses 10 11 12class TestAPIViewAuthnAuthz(APITestCase): ... 13 14 15def api_viewset_action(viewset: GenericViewSet, member: Callable) -> Callable: 16 """Test API Viewset action""" 17 18 def tester(self: TestAPIViewAuthnAuthz): 19 if "permission_classes" in member.kwargs: 20 self.assertNotEqual( 21 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 22 ) 23 if "authentication_classes" in member.kwargs: 24 self.assertNotEqual( 25 member.kwargs["authentication_classes"], 26 [], 27 "authentication_classes should not be empty", 28 ) 29 30 return tester 31 32 33def api_view(view: APIView) -> Callable: 34 35 def tester(self: TestAPIViewAuthnAuthz): 36 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 37 self.assertNotEqual( 38 view.authentication_classes, 39 [], 40 "authentication_classes should not be empty", 41 ) 42 43 return tester 44 45 46# Tell django to load all URLs 47reverse("authentik_core:root-redirect") 48for viewset in all_subclasses(GenericViewSet): 49 for act_name, member in getmembers(viewset(), lambda x: isinstance(x, Callable)): 50 if not hasattr(member, "kwargs") or not hasattr(member, "mapping"): 51 continue 52 setattr( 53 TestAPIViewAuthnAuthz, 54 f"test_viewset_{viewset.__name__}_action_{act_name}", 55 api_viewset_action(viewset, member), 56 ) 57for view in all_subclasses(APIView): 58 setattr( 59 TestAPIViewAuthnAuthz, 60 f"test_view_{view.__name__}", 61 api_view(view), 62 )
13class TestAPIViewAuthnAuthz(APITestCase): ...
Similar to TransactionTestCase, but use transaction.atomic() to achieve
test isolation.
In most situations, TestCase should be preferred to TransactionTestCase as it allows faster execution. However, there are some situations where using TransactionTestCase might be necessary (e.g. testing some transactional behavior).
On database backends with no transaction support, TestCase behaves as TransactionTestCase.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 )
The type of the None singleton.
16def api_viewset_action(viewset: GenericViewSet, member: Callable) -> Callable: 17 """Test API Viewset action""" 18 19 def tester(self: TestAPIViewAuthnAuthz): 20 if "permission_classes" in member.kwargs: 21 self.assertNotEqual( 22 member.kwargs["permission_classes"], [], "permission_classes should not be empty" 23 ) 24 if "authentication_classes" in member.kwargs: 25 self.assertNotEqual( 26 member.kwargs["authentication_classes"], 27 [], 28 "authentication_classes should not be empty", 29 ) 30 31 return tester
Test API Viewset action
34def api_view(view: APIView) -> Callable: 35 36 def tester(self: TestAPIViewAuthnAuthz): 37 self.assertNotEqual(view.permission_classes, [], "permission_classes should not be empty") 38 self.assertNotEqual( 39 view.authentication_classes, 40 [], 41 "authentication_classes should not be empty", 42 ) 43 44 return tester