Skip to content

Commit 3b0c169

Browse files
committed
tests(cli[shell]): pydocstyle manual fixes
1 parent 250f773 commit 3b0c169

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/cli/test_shell.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""CLI tests for tmuxp shell."""
12
import contextlib
23
import io
34
import pathlib
@@ -116,6 +117,7 @@ def test_shell(
116117
monkeypatch: pytest.MonkeyPatch,
117118
capsys: pytest.CaptureFixture[str],
118119
) -> None:
120+
"""CLI tests for tmuxp shell."""
119121
monkeypatch.setenv("HOME", str(tmp_path))
120122
window_name = "my_window"
121123
window = session.new_window(window_name=window_name)
@@ -207,6 +209,7 @@ def test_shell_target_missing(
207209
monkeypatch: pytest.MonkeyPatch,
208210
capsys: pytest.CaptureFixture[str],
209211
) -> None:
212+
"""CLI tests for tmuxp shell when target is not specified."""
210213
monkeypatch.setenv("HOME", str(tmp_path))
211214
window_name = "my_window"
212215
window = session.new_window(window_name=window_name)
@@ -283,6 +286,7 @@ def test_shell_interactive(
283286
monkeypatch: pytest.MonkeyPatch,
284287
capsys: pytest.CaptureFixture[str],
285288
) -> None:
289+
"""CLI tests for tmuxp shell when shell is specified."""
286290
monkeypatch.setenv("HOME", str(tmp_path))
287291
window_name = "my_window"
288292
window = session.new_window(window_name=window_name)

0 commit comments

Comments
 (0)