Got EmbeddedDocumentFields working

Added validation on EmbeddedDocumentField, added tests for
EmbeddedDocumentFields.
This commit is contained in:
Harry Marr
2009-11-17 01:32:40 +00:00
parent 48418d5a60
commit 5a87534c22
5 changed files with 46 additions and 5 deletions

View File

@@ -1,8 +1,9 @@
from document import Document
import document
from document import *
import fields
from fields import *
__all__ = fields.__all__ + ['Document']
__all__ = document.__all__ + fields.__all__
__author__ = 'Harry Marr'
__version__ = '0.1'