pypa-hatch/tests/cli/config/test_find.py

10 lines
227 B
Python

def test(hatch, config_file, helpers):
result = hatch('config', 'find')
assert result.exit_code == 0, result.output
assert result.output == helpers.dedent(
f"""
{config_file.path}
"""
)