|
- """
- 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 {{ (cookiecutter.project_slug.title()).replace('_', '') }}
-
- class Test{{ (cookiecutter.project_slug.title()).replace('_', '') }}:
- def test_one(self):
- pass
-
- def test_two(self):
- pass
|