mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-16 20:00:23 +00:00
* Modernize Python syntax, add Python 3.8 * Update Python version & dist in TravisCI * Add postgresql as addon * Switch to psycopg2-binary * Drop django.utils.six
18 lines
637 B
Python
18 lines
637 B
Python
from django.test import TestCase
|
|
|
|
from tests.models import CustomUUIDModel, CustomNotPrimaryUUIDModel
|
|
|
|
|
|
class UUIDFieldTests(TestCase):
|
|
|
|
def test_uuid_model_with_uuid_field_as_primary_key(self):
|
|
instance = CustomUUIDModel()
|
|
instance.save()
|
|
self.assertEqual(instance.id.__class__.__name__, 'UUID')
|
|
self.assertEqual(instance.id, instance.pk)
|
|
|
|
def test_uuid_model_with_uuid_field_as_not_primary_key(self):
|
|
instance = CustomNotPrimaryUUIDModel()
|
|
instance.save()
|
|
self.assertEqual(instance.uuid.__class__.__name__, 'UUID')
|
|
self.assertNotEqual(instance.uuid, instance.pk)
|