Files
nscertkeycreate/legacy/tests/test_packaging_entry.py
deamonkai fc94008530 initial
2026-01-23 12:11:21 -06:00

8 lines
227 B
Python

"""Test verifying `pyproject.toml` exposes `certctl` script entry."""
def test_pyproject_has_nsctl_entry():
content = open("pyproject.toml").read()
assert "certctl" in content
assert "certctl.cli:main" in content