mirror of
https://github.com/khodges42/nightShift.git
synced 2026-06-14 18:18:36 +00:00
11 lines
160 B
Python
11 lines
160 B
Python
import unittest
|
|
|
|
|
|
class SmokeTests(unittest.TestCase):
|
|
def test_smoke(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|