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

7 lines
225 B
Python

def test_docs_mention_wildcard():
import pathlib
p = pathlib.Path(__file__).resolve().parents[1] / 'docs' / 'USAGE.md'
txt = p.read_text()
assert 'wildcard' in txt.lower()
assert '--allow-wildcard' in txt