- Added to_json and from_json to Document (MongoEngine/mongoengine#1) - Added to_json and from_json to QuerySet (MongoEngine/mongoengine#131)
15 lines
271 B
Python
15 lines
271 B
Python
import sys
|
|
sys.path[0:0] = [""]
|
|
import unittest
|
|
|
|
from class_methods import *
|
|
from delta import *
|
|
from dynamic import *
|
|
from indexes import *
|
|
from inheritance import *
|
|
from instance import *
|
|
from json_serialisation import *
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|