Updated tests

This commit is contained in:
Ross Lawley
2013-01-28 13:40:28 +00:00
parent f182daa85e
commit 0cbd3663e4
12 changed files with 35 additions and 15 deletions

View File

@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import with_statement
import sys
sys.path[0:0] = [""]
import unittest
from mongoengine import *

View File

@@ -1,6 +1,5 @@
import unittest
import sys
sys.path[0:0] = [""]
from mongoengine import *

View File

@@ -2,7 +2,6 @@
from __future__ import with_statement
import unittest
import sys
sys.path[0:0] = [""]
import os

View File

@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
import sys
sys.path[0:0] = [""]
import unittest
import warnings

View File

@@ -121,7 +121,7 @@ class ValidatorErrorTest(unittest.TestCase):
except ValidationError, e:
self.assertTrue("SubDoc:None" in e.message)
self.assertEqual(e.to_dict(), {
'e.val': 'Field is required'})
"e": {'val': 'OK could not be converted to int'}})
Doc.drop_collection()
@@ -139,7 +139,7 @@ class ValidatorErrorTest(unittest.TestCase):
except ValidationError, e:
self.assertTrue("Doc:test" in e.message)
self.assertEqual(e.to_dict(), {
'e.val': 'Field is required'})
"e": {'val': 'OK could not be converted to int'}})
if __name__ == '__main__':