mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-11 03:56:36 +03:00
9 lines
197 B
Python
9 lines
197 B
Python
import unittest
|
|
|
|
|
|
class ParserTests(unittest.TestCase):
|
|
"""There are no tests yet"""
|
|
@unittest.skip("there should be parser tests")
|
|
def test_parser(self):
|
|
self.assertTrue(True)
|