Added test for listfield fix

Added Pau Aliagas to authors
[closes #299]
This commit is contained in:
Ross Lawley
2011-10-03 05:30:23 -07:00
parent 9b4d0f6450
commit 60b6ad3fcf
3 changed files with 16 additions and 0 deletions

View File

@@ -515,6 +515,20 @@ class FieldTest(unittest.TestCase):
Simple.drop_collection()
def test_list_field_rejects_strings(self):
"""Strings aren't valid list field data types"""
class Simple(Document):
mapping = ListField()
Simple.drop_collection()
e = Simple()
e.mapping = 'hello world'
self.assertRaises(ValidationError, e.save)
def test_list_field_complex(self):
"""Ensure that the list fields can handle the complex types."""