response.include_files is now cleaner and easier to maintain You can specify a tuple of (type, url) to include external assets without extension (such as the usecase described in #628) Added tests for include_files, that was never included in CI tests
25 lines
585 B
Python
25 lines
585 B
Python
import sys
|
|
|
|
from test_http import *
|
|
from test_cache import *
|
|
from test_contenttype import *
|
|
from test_fileutils import *
|
|
from test_globals import *
|
|
from test_html import *
|
|
from test_is_url import *
|
|
from test_languages import *
|
|
from test_router import *
|
|
from test_routes import *
|
|
from test_storage import *
|
|
from test_serializers import *
|
|
from test_template import *
|
|
from test_validators import *
|
|
from test_utils import *
|
|
from test_contribs import *
|
|
from test_web import *
|
|
from test_dal import *
|
|
from test_tools import *
|
|
|
|
if sys.version[:3] == '2.7':
|
|
from test_old_doctests import *
|