mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
8 lines
184 B
Python
8 lines
184 B
Python
import unittest
|
|
|
|
|
|
class TLTests(unittest.TestCase):
|
|
"""There are no tests yet"""
|
|
@unittest.skip("there should be TL tests")
|
|
def test_tl(self):
|
|
self.assertTrue(True) |