From 4d1232b7645b768e130b4d5b8e9b6e8b8440d6b4 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Thu, 23 Oct 2025 16:35:31 +0200 Subject: [PATCH] Tests - not runnable yet. --- dokumente/tests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dokumente/tests.py b/dokumente/tests.py index 7ce503c..d87fde3 100644 --- a/dokumente/tests.py +++ b/dokumente/tests.py @@ -1,3 +1,8 @@ from django.test import TestCase +from myapp.models import Dokument # Create your tests here. + +class DokumentTestCase (TestCase): + def setUp(self): + Document.objects.create(name) \ No newline at end of file