Julien Fastré
99caf84d51
Some checks reported errors
continuous-integration/drone/push Build encountered an error
16 lines
273 B
Python
16 lines
273 B
Python
import unittest
|
|
|
|
class BasicTest(unittest.TestCase):
|
|
|
|
def test_empty(self):
|
|
self.assertTrue(True)
|
|
|
|
def test_second(self):
|
|
self.assertTrue(True)
|
|
|
|
def test_third(self):
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|