diff --git a/smash/web/tests/models/test_voucher_type.py b/smash/web/tests/models/test_voucher_type.py new file mode 100644 index 0000000000000000000000000000000000000000..3c47e30bc18f79f2f41ae75cdb6fac9861b6a5f1 --- /dev/null +++ b/smash/web/tests/models/test_voucher_type.py @@ -0,0 +1,15 @@ +import logging + +from django.test import TestCase + +from web.tests.functions import create_voucher_type + +logger = logging.getLogger(__name__) + + +class VoucherTypeTests(TestCase): + def test_to_string(self): + voucher_type = create_voucher_type() + + self.assertTrue(voucher_type.code in str(voucher_type)) + self.assertTrue(voucher_type.code in unicode(voucher_type))