summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/conftest.py9
-rw-r--r--tests/test_api.py9
-rw-r--r--tests/test_bytecode_cache.py9
-rw-r--r--tests/test_core_tags.py9
-rw-r--r--tests/test_debug.py9
-rw-r--r--tests/test_ext.py9
-rw-r--r--tests/test_filters.py9
-rw-r--r--tests/test_imports.py9
-rw-r--r--tests/test_inheritance.py9
-rw-r--r--tests/test_lexnparse.py9
-rw-r--r--tests/test_loader.py9
-rw-r--r--tests/test_regression.py9
-rw-r--r--tests/test_security.py9
-rw-r--r--tests/test_tests.py9
-rw-r--r--tests/test_utils.py9
15 files changed, 0 insertions, 135 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index a1c11a9..bb26409 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.conftest
- ~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Configuration and Fixtures for the tests
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import os
import pytest
diff --git a/tests/test_api.py b/tests/test_api.py
index a9eddbe..0c262dc 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.api
- ~~~~~~~~~~~~~~~~~~~~
-
- Tests the public API and related stuff.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import os
import shutil
import tempfile
diff --git a/tests/test_bytecode_cache.py b/tests/test_bytecode_cache.py
index 937c0fe..6863690 100644
--- a/tests/test_bytecode_cache.py
+++ b/tests/test_bytecode_cache.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.bytecode_cache
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Test bytecode caching
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import Environment
diff --git a/tests/test_core_tags.py b/tests/test_core_tags.py
index 0f9346b..4132c4f 100644
--- a/tests/test_core_tags.py
+++ b/tests/test_core_tags.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.core_tags
- ~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Test the core tags like for and if.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import DictLoader
diff --git a/tests/test_debug.py b/tests/test_debug.py
index 7dbad31..5ca92d9 100644
--- a/tests/test_debug.py
+++ b/tests/test_debug.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.debug
- ~~~~~~~~~~~~~~~~~~~~~~
-
- Tests the debug system.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pickle
import re
from traceback import format_exception
diff --git a/tests/test_ext.py b/tests/test_ext.py
index 6ecf9a2..67d2cdb 100644
--- a/tests/test_ext.py
+++ b/tests/test_ext.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.ext
- ~~~~~~~~~~~~~~~~~~~~
-
- Tests for the extensions.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import re
import pytest
diff --git a/tests/test_filters.py b/tests/test_filters.py
index 388e286..109f444 100644
--- a/tests/test_filters.py
+++ b/tests/test_filters.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.filters
- ~~~~~~~~~~~~~~~~~~~~~~~~
-
- Tests for the jinja filters.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import random
from collections import namedtuple
diff --git a/tests/test_imports.py b/tests/test_imports.py
index 7b90222..0dae217 100644
--- a/tests/test_imports.py
+++ b/tests/test_imports.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.imports
- ~~~~~~~~~~~~~~~~~~~~~~~~
-
- Tests the import features (with includes).
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import DictLoader
diff --git a/tests/test_inheritance.py b/tests/test_inheritance.py
index 0cea136..92f66e0 100644
--- a/tests/test_inheritance.py
+++ b/tests/test_inheritance.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.inheritance
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Tests the template inheritance feature.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import DictLoader
diff --git a/tests/test_lexnparse.py b/tests/test_lexnparse.py
index dcfa617..9da9380 100644
--- a/tests/test_lexnparse.py
+++ b/tests/test_lexnparse.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.lexnparse
- ~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- All the unittests regarding lexing, parsing and syntax.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import Environment
diff --git a/tests/test_loader.py b/tests/test_loader.py
index 0a476d5..4aa6511 100644
--- a/tests/test_loader.py
+++ b/tests/test_loader.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.loader
- ~~~~~~~~~~~~~~~~~~~~~~~
-
- Test the loaders.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import os
import shutil
import sys
diff --git a/tests/test_regression.py b/tests/test_regression.py
index 5aa1f3d..accc1f6 100644
--- a/tests/test_regression.py
+++ b/tests/test_regression.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.regression
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Tests corner cases and bugs.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import sys
import pytest
diff --git a/tests/test_security.py b/tests/test_security.py
index e00ef75..f092c96 100644
--- a/tests/test_security.py
+++ b/tests/test_security.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.security
- ~~~~~~~~~~~~~~~~~~~~~~~~~
-
- Checks the sandbox and other security features.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import Environment
diff --git a/tests/test_tests.py b/tests/test_tests.py
index 447935a..42595e8 100644
--- a/tests/test_tests.py
+++ b/tests/test_tests.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.tests
- ~~~~~~~~~~~~~~~~~~~~~~
-
- Who tests the tests?
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pytest
from jinja2 import Environment
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 58a2cdf..58165ef 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -1,13 +1,4 @@
# -*- coding: utf-8 -*-
-"""
- jinja2.testsuite.utils
- ~~~~~~~~~~~~~~~~~~~~~~
-
- Tests utilities jinja uses.
-
- :copyright: (c) 2017 by the Jinja Team.
- :license: BSD, see LICENSE for more details.
-"""
import pickle
import random
from collections import deque