mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-23 09:53:45 +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)
|