vbv/server/vbv_lernwelt/learnpath/tests/test_whatever.py

15 lines
249 B
Python

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 ')