9 lines
120 B
Python
9 lines
120 B
Python
import unittest
|
|
|
|
|
|
class FileManipulationTestCase(unittest.TestCase):
|
|
|
|
|
|
def test_simple(self):
|
|
|
|
self.assertTrue(True)
|