moved tests

This commit is contained in:
Oliver Zander 2025-08-18 12:55:24 +02:00
parent 39cd2af768
commit 6c1c13cba8
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
from datetime import date
from django.test import TestCase, Client from django.test import TestCase, Client
from django.conf import settings from django.conf import settings
from django.contrib.auth.models import User from django.contrib.auth.models import User
from django.http import HttpResponse from django.http import HttpResponse
from datetime import date
from .models import HonoraryCertificate, Project, Account, Literature from input.forms import LibraryForm
from .forms import LibraryForm from input.models import HonoraryCertificate, Project, Account, Literature
class TestWithoutLogin(TestCase): class TestWithoutLogin(TestCase):