Skip to content
Snippets Groups Projects
model_tests.py 198 B
Newer Older
import pytest

from ..models import SheetProfile


@pytest.mark.django_db
def test_unicode_is_label():
    profile = SheetProfile.objects.create(label='Test')

    assert unicode(profile) == 'Test'