This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/tests/__init__.py
2018-12-12 16:52:37 +00:00

10 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