from django.test import TestCase from server.vbv_lernwelt.core.models import User class TestWhatever(TestCase): def test_print(self): print("hallo " * 80) def test_user(self): User.objects.get_or_create(name='hallo ')