File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1+ """Tests for libtmux object model, querying and traversal, etc."""
12import pathlib
23import 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
135137def 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" )
You can’t perform that action at this time.
0 commit comments