2222class AutoGenCrudAPIController (CrudAPIController ):
2323 """
2424 For unit testings of the following auto generated APIs:
25- get/create/patch/delete/filter/filter_exclude
25+ get/create/patch/delete
2626 """
2727
2828 def __init__ (self , service : EventService ):
@@ -36,7 +36,7 @@ class Meta:
3636@api_controller ("unittest" , permissions = [BaseApiPermission ])
3737class RecursiveAPIController (CrudAPIController ):
3838 """
39- For unit testings of no recursive configuration
39+ For unit testings of recursive configuration
4040 """
4141
4242 def __init__ (self , service : EventService ):
@@ -52,7 +52,7 @@ class Meta:
5252@api_controller ("unittest" , permissions = [BaseApiPermission ])
5353class InheritedRecursiveAPIController (AutoGenCrudAPIController ):
5454 """
55- For unit testings of no recursive configuration
55+ For unit testings of inherited recursive configuration
5656 """
5757
5858 def __init__ (self , service : EventService ):
@@ -181,6 +181,10 @@ async def test_perm_admin_site(self, request, word: str):
181181
182182@api_controller ("unittest" , permissions = [AdminSitePermission ])
183183class AdminSitePermissionAPIController (CrudAPIController ):
184+ """
185+ For unit testings of AdminSite permissions class
186+ """
187+
184188 def __init__ (self , service : EventService ):
185189 super ().__init__ (service )
186190 self .service = service
@@ -191,6 +195,10 @@ class Meta:
191195
192196@api_controller ("unittest" , permissions = [AdminSitePermission ])
193197class NoCrudAPIController (CrudAPIController ):
198+ """
199+ For unit testings of no crud configuration
200+ """
201+
194202 def __init__ (self , service : EventService ):
195203 super ().__init__ (service )
196204 self .service = service
@@ -202,6 +210,10 @@ class Meta:
202210
203211@api_controller ("unittest" , permissions = [AdminSitePermission ])
204212class NoCrudInheritedAPIController (AdminSitePermissionAPIController ):
213+ """
214+ For unit testings of no crud configuration (Inherited Class)
215+ """
216+
205217 def __init__ (self , service : EventService ):
206218 super ().__init__ (service )
207219 self .service = service
0 commit comments