9 lines
213 B
Python
9 lines
213 B
Python
from unittest import TestCase
|
|
from click.testing import CliRunner
|
|
from catfish.__main__ import cli
|
|
|
|
|
|
class BaseTestCase(TestCase):
|
|
def setUp(self):
|
|
self.cli_runner = CliRunner()
|
|
self.cli = cli
|