Skip to content

Commit

Permalink
Corrected placeholder test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernardo-MG committed Jun 26, 2015
1 parent 1b18d00 commit 7003113
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions {{cookiecutter.repo_name}}/tests/test_placeholder.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,31 @@
import unittest

"""
CWR file name encoder tests.
Placeholder tests.
The following cases are tested:
- A placeholder test that is always true passes
"""

__author__ = '{{ cookiecutter.developer_name }}'
__license__ = 'MIT'
__status__ = 'Development'


class TestFileNameCWREncodeValid(unittest.TestCase):
class TestPlaceholder(unittest.TestCase):
"""
Tests that CWRFileNameEncoder encodes valid FileTags (using the new format)
Placeholder for a test case.
"""

def setUp(self):
"""
Here the tests environment would be prepared.
"""
pass

def test_true(self):
"""
A placeholder test which is always true.
"""
self.assertTrue(True)

0 comments on commit 7003113

Please sign in to comment.