We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 121b675 commit 6bb9d45Copy full SHA for 6bb9d45
tests/workspace/test_freezer.py
@@ -1,4 +1,4 @@
1
-"""Tests for freezing tmux sessions with tmuxp."""
+"""Tests tmux session freezing functionality for tmuxp."""
2
import pathlib
3
import time
4
import typing
@@ -16,6 +16,7 @@
16
17
18
def test_freeze_config(session: Session) -> None:
19
+ """Test freezing a tmux session."""
20
session_config = ConfigReader._from_file(
21
test_utils.get_workspace_file("workspace/freezer/sample_workspace.yaml")
22
)
@@ -87,6 +88,7 @@ def test_inline_workspace() -> None:
87
88
def test_export_yaml(
89
tmp_path: pathlib.Path, config_fixture: "WorkspaceTestData"
90
) -> None:
91
+ """Test exporting a frozen tmux session to YAML."""
92
yaml_workspace_file = tmp_path / "config.yaml"
93
94
sample_workspace = freezer.inline(
0 commit comments