コード例 #1
0
ファイル: document.py プロジェクト: yuanhao/mongol
    def setUp(self):
        self.db = connect('mongoltest')

        class Blog(Document):
            title = Property()
            tags = ListProperty()
            author = DictProperty()

        self.Blog = Blog
コード例 #2
0
ファイル: property.py プロジェクト: yuanhao/mongol
 def setUp(self):
     self.db = connect("mongoltest")