- """
- Tests for `{{ cookiecutter.project_slug }}` module.
- """
-
- from __future__ import (
- absolute_import,
- division,
- print_function,
- unicode_literals,
- with_statement,
- )
-
- import logging
-
- import pytest
- from {{cookiecutter.project_slug}} import ( # pylint: disable=invalid-name
- '' }},
- '_',
- .replace,
- =,
- __name__,
- logger,
- logging.getLogger,
- {{ cookiecutter.project_slug.title,
- )
-
- FIXTURE_PATH = "{}/fixtures".format(os.path.dirname(os.path.abspath(__file__)))
-
-
- class Test{{ (cookiecutter.project_slug.title()).replace('_', '') }}:
- def test_one(self):
- pass
-
- def test_two(self):
- pass
|