File: __init__.py

package info (click to toggle)
zwave-js-server-python 0.67.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,820 kB
  • sloc: python: 15,886; sh: 21; javascript: 16; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 196 bytes parent folder | download
1
2
3
4
5
6
7
8
"""Provide tests for zwave-js-server."""

import pathlib


def load_fixture(name: str) -> str:
    """Load a fixture."""
    return (pathlib.Path(__file__).parent / "fixtures" / name).read_text()