SP/web2py/gluon/packages/dal/tests/__init__.py

13 lines
246 B
Python
Raw Normal View History

2018-10-25 15:33:07 +00:00
from ._adapt import NOSQL
if NOSQL:
from .nosql import *
else:
from .sql import *
from .indexes import *
from .validation import *
from .caching import TestCache
from .smart_query import *
from .base import *
from .contribs import *