11 lines
137 B
Python
11 lines
137 B
Python
|
import unittest
|
||
|
|
||
|
|
||
|
class UninstallTestCase(unittest.TestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
def test_equal(self):
|
||
|
pass
|