14 lines
489 B
Python
14 lines
489 B
Python
from django.conf import settings
|
|
from django.test import TestCase
|
|
from wagtail.core.models import Locale
|
|
|
|
from vbv_lernwelt.learnpath.models import LearningPath
|
|
from vbv_lernwelt.learnpath.tests.create_default_competences import create_default_competences
|
|
from vbv_lernwelt.learnpath.tests.create_default_learning_path import create_default_learning_path
|
|
|
|
|
|
class TestCreateDefaultCompetences(TestCase):
|
|
def test_create_default_competeneces(self):
|
|
create_default_competences()
|
|
|