File: test_package.py

package info (click to toggle)
sphinx-theme-builder 0.2.0b2-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 448 kB
  • sloc: python: 2,227; sh: 19; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""Overall workflow tests for `stb package`."""

from click import Group
from click.testing import CliRunner


class TestPackageCommand:
    def test_help(self, runner: CliRunner, cli: Group) -> None:
        process = runner.invoke(cli, ["package", "--help"])

        assert process.exit_code == 0, process.stdout
        assert process.stdout