mirror of
https://github.com/projectatomic/atomic.git
synced 2026-02-05 18:45:01 +01:00
This change adds documentation areas and the pylint skip used in the other tests. Closes: #1009 Approved by: giuseppe
22 lines
344 B
Python
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()
|