mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-05-14 23:16:50 +00:00
8 lines
251 B
Python
8 lines
251 B
Python
from tests.base import BaseTestCase
|
|
|
|
|
|
class CLITestCase(BaseTestCase):
|
|
def test_ptshell(self):
|
|
result = self.runner.invoke(args=['ptshell'])
|
|
self.assertNotIn('ptpython not installed! Use the default shell instead.', result.output)
|