Adds a few more test cases for coverage and adds no coverage to some others

This commit is contained in:
Trenton Holmes
2022-06-13 11:33:30 -07:00
parent 361c255e46
commit 39ee284fcd
8 changed files with 128 additions and 39 deletions

View File

@@ -746,7 +746,7 @@ class RemoteVersionView(GenericAPIView):
class StoragePathViewSet(ModelViewSet):
model = DocumentType
model = StoragePath
queryset = StoragePath.objects.annotate(document_count=Count("documents")).order_by(
Lower("name"),