|
- # -*- coding: utf-8 -*-
- """
- Tests for `{{ cookiecutter.project_slug }}` module.
- """
-
- from __future__ import (
- absolute_import,
- division,
- print_function,
- with_statement,
- unicode_literals
- )
-
- import logging
- import pytest
-
- from {{ cookiecutter.project_slug }} import {{ (cookiecutter.project_slug.title()).replace('_', '') }}
-
- logger = logging.getLogger(__name__) # pylint: disable=invalid-name
-
- 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
|