2010-10-12 00:55:31 +00:00
|
|
|
from django.test import TestCase
|
2011-10-13 18:04:12 +00:00
|
|
|
|
|
|
|
from .models import Person
|
|
|
|
|
2010-10-12 00:55:31 +00:00
|
|
|
|
|
|
|
class PropertyTests(TestCase):
|
2018-11-24 01:59:38 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
2018-11-24 11:28:28 +00:00
|
|
|
cls.a = Person.objects.create(first_name="John", last_name="Lennon")
|
2010-10-12 00:55:31 +00:00
|
|
|
|
|
|
|
def test_getter(self):
|
|
|
|
self.assertEqual(self.a.full_name, "John Lennon")
|
|
|
|
|
|
|
|
def test_setter(self):
|
|
|
|
# The "full_name" property hasn't provided a "set" method.
|
2016-01-17 11:26:39 +00:00
|
|
|
with self.assertRaises(AttributeError):
|
|
|
|
setattr(self.a, "full_name", "Paul McCartney")
|
2010-10-12 00:55:31 +00:00
|
|
|
|
2016-01-21 16:49:40 +00:00
|
|
|
# And cannot be used to initialize the class.
|
2021-12-13 15:44:07 +00:00
|
|
|
with self.assertRaises(AttributeError):
|
2016-01-21 16:49:40 +00:00
|
|
|
Person(full_name="Paul McCartney")
|
|
|
|
|
2013-11-15 13:23:10 +00:00
|
|
|
# But "full_name_2" has, and it can be used to initialize the class.
|
2013-11-03 18:17:58 +00:00
|
|
|
a2 = Person(full_name_2="Paul McCartney")
|
2010-10-12 00:55:31 +00:00
|
|
|
a2.save()
|
|
|
|
self.assertEqual(a2.first_name, "Paul")
|