1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00
Files
atomic/tests/unit_template.py
Steve Milner 640fccc1b8 test: Update unit test template
This change adds documentation areas and the pylint skip used in the
other tests.

Closes: #1009
Approved by: giuseppe
2017-06-29 08:11:14 +00:00

22 lines
344 B
Python

#
# Project Atomic Unit Test Example Template
#
#pylint: skip-file
import unittest
class TestAtomicUnit(unittest.TestCase):
"""
TODO: This test case ...
"""
def test_unit_desired_behavior(self):
"""
TODO: Verifies ...
"""
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()