10 lines
169 B
Python
10 lines
169 B
Python
from unittest import TestCase
|
|
|
|
|
|
class TestItWorks(TestCase):
|
|
def setUp(self):
|
|
return super().setUp()
|
|
|
|
def test_it_works(self):
|
|
assert 1 == 1
|