mirror of
https://github.com/balkian/bitter.git
synced 2024-12-22 16:38:13 +00:00
8 lines
109 B
Python
8 lines
109 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
class TestUtils(TestCase):
|
||
|
|
||
|
def test_get_user(self):
|
||
|
assert True
|
||
|
|