Skip to content

Commit

Permalink
Add another unit test for dysh_shell
Browse files Browse the repository at this point in the history
  • Loading branch information
tchamberlin committed Nov 21, 2023
1 parent 99aaf7f commit f534ba9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/dysh/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ def test_shell_cli():
subprocess.check_call(["dysh"])


def test_shell_cli_with_args():
"""Simply prove that we can launch $ dysh from CLI"""
subprocess.check_call(["dysh", "--colors", "Linux", "--no-banner", "--profile", "foo"])


def test_init_shell(monkeypatch):
"""Prove that we can open the shell, print something, and exit without error"""

Expand Down

0 comments on commit f534ba9

Please sign in to comment.