1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
from unittest import TestCase
from xsdata.models.xsd import List
class ListTests(TestCase):
def test_is_attribute(self):
obj = List()
self.assertTrue(obj.is_property)
def test_real_name(self):
obj = List()
self.assertEqual("value", obj.real_name)
def test_real_type(self):
obj = List()
self.assertEqual([], list(obj.attr_types))
obj.item_type = "foo"
self.assertEqual(["foo"], list(obj.attr_types))
def test_get_restrictions(self):
obj = List()
self.assertEqual({"tokens": True}, obj.get_restrictions())
|