(cap_out, store, tempdir_factory)
| 174 | |
| 175 | |
| 176 | def test_arbitrary_bytes_hook(cap_out, store, tempdir_factory): |
| 177 | git_path = make_consuming_repo(tempdir_factory, 'arbitrary_bytes_repo') |
| 178 | with cwd(git_path): |
| 179 | _test_run( |
| 180 | cap_out, store, git_path, {}, (b'\xe2\x98\x83\xb2\n',), 1, True, |
| 181 | ) |
| 182 | |
| 183 | |
| 184 | def test_hook_that_modifies_but_returns_zero(cap_out, store, tempdir_factory): |
nothing calls this directly
no test coverage detected