Skip to content

Commit 557dde2

Browse files
committed
chore(tests[dataclasses]): pydocstyle manual fixes
1 parent c8842f2 commit 557dde2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_dataclasses.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""Tests for libtmux object model, querying and traversal, etc."""
12
import pathlib
23
import typing as t
34

@@ -27,6 +28,7 @@ def test_pane(
2728
tmp_path: pathlib.Path,
2829
server: Server,
2930
) -> None:
31+
"""Verify Pane dataclass object."""
3032
monkeypatch.chdir(tmp_path)
3133

3234
try:
@@ -133,6 +135,7 @@ def test_pane(
133135

134136
@pytest.fixture
135137
def session(session: Session) -> Session:
138+
"""Verify creating Session with Session.from_session_id()."""
136139
assert session.session_id is not None
137140
return Session.from_session_id(server=session.server, session_id=session.session_id)
138141

@@ -142,6 +145,7 @@ def test_querylist(
142145
tmp_path: pathlib.Path,
143146
session: Session,
144147
) -> None:
148+
"""Verify QueryList behavior with libtmux object."""
145149
monkeypatch.chdir(tmp_path)
146150

147151
session.new_window(window_name="test_2")

0 commit comments

Comments
 (0)