File: structures.py

package info (click to toggle)
tmuxp 1.62.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,800 kB
  • sloc: python: 7,989; makefile: 202; sh: 21
file content (19 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""Typings / structures for tmuxp fixtures."""

from __future__ import annotations

import dataclasses
import typing as t


@dataclasses.dataclass
class WorkspaceTestData:
    """Workspace data fixtures for tmuxp tests."""

    expand1: t.Any
    expand2: t.Any
    expand_blank: t.Any
    sample_workspace: t.Any
    shell_command_before: t.Any
    shell_command_before_session: t.Any
    trickle: t.Any