mirror of
https://github.com/aljazceru/ebs-snapshooter.git
synced 2025-12-18 22:44:27 +01:00
10 lines
172 B
Python
10 lines
172 B
Python
import unittest
|
|
|
|
class TestDateCompare(unittest.TestCase):
|
|
|
|
def test_date_compare(self):
|
|
self.assertEqual(1, 1)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |