How to use the kuna.cli.main function in kuna

To help you get started, we’ve selected a few kuna examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DmytroLitvinov / kuna / tests / test_kuna.py View on Github external
def test_command_line_interface(self):
        """Test the CLI."""
        runner = CliRunner()
        result = runner.invoke(cli.main)
        assert result.exit_code == 0
        assert 'kuna.cli.main' in result.output
        help_result = runner.invoke(cli.main, ['--help'])
        assert help_result.exit_code == 0
        assert '--help  Show this message and exit.' in help_result.output
github DmytroLitvinov / kuna / tests / test_kuna.py View on Github external
def test_command_line_interface(self):
        """Test the CLI."""
        runner = CliRunner()
        result = runner.invoke(cli.main)
        assert result.exit_code == 0
        assert 'kuna.cli.main' in result.output
        help_result = runner.invoke(cli.main, ['--help'])
        assert help_result.exit_code == 0
        assert '--help  Show this message and exit.' in help_result.output

kuna

Interact with Kuna exchange API

MIT
Latest version published 3 years ago

Package Health Score

42 / 100
Full package analysis

Popular kuna functions