10 lines
120 B
Python
10 lines
120 B
Python
#!/usr/bin/env python
|
|
|
|
import unittest
|
|
|
|
|
|
class SomeTest(unittest.TestCase):
|
|
|
|
def test_something(self):
|
|
pass
|