smb-scanner/tests/tests.py

11 lines
194 B
Python
Raw Normal View History

2024-06-25 22:28:21 -04:00
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()