test_models.py 323 Bytes
Newer Older
1
from django.test import TestCase
2
from ..models import InstanceTemplate
3 4 5 6


class TemplateTestCase(TestCase):
    def test_template_creation(self):
7 8
        template = InstanceTemplate(name='My first template',
                                    access_method='ssh', )
Őry Máté committed
9
        template.clean()
10
        # TODO add images & net