forbid overriding entry for meta hooks

This commit is contained in:
Anthony Sottile 2021-12-31 17:31:12 -08:00
parent 16f68254a8
commit d3b4f737b9
2 changed files with 16 additions and 0 deletions

View file

@ -423,6 +423,13 @@ def test_migrate_to_sha_ok():
{'repo': 'meta', 'hooks': [{'id': 'identity', 'language': 'python'}]},
# name override must be string
{'repo': 'meta', 'hooks': [{'id': 'identity', 'name': False}]},
pytest.param(
{
'repo': 'meta',
'hooks': [{'id': 'identity', 'entry': 'echo hi'}],
},
id='cannot override entry for meta hooks',
),
),
)
def test_meta_hook_invalid(config_repo):