(cap_out, store, repo_with_passing_hook)
| 975 | |
| 976 | |
| 977 | def test_meta_hook_passes(cap_out, store, repo_with_passing_hook): |
| 978 | add_config_to_repo(repo_with_passing_hook, sample_meta_config()) |
| 979 | |
| 980 | _test_run( |
| 981 | cap_out, |
| 982 | store, |
| 983 | repo_with_passing_hook, |
| 984 | opts={}, |
| 985 | expected_outputs=[b'Check for useless excludes'], |
| 986 | expected_ret=0, |
| 987 | stage=False, |
| 988 | ) |
| 989 | |
| 990 | |
| 991 | @pytest.fixture |
nothing calls this directly
no test coverage detected