(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestEnableStrictHashVerification(t *testing.T) { |
| 61 | err := EnableStrictHashVerification(false) |
| 62 | checkFatal(t, err) |
| 63 | |
| 64 | err = EnableStrictHashVerification(true) |
| 65 | checkFatal(t, err) |
| 66 | } |
| 67 | |
| 68 | func TestEnableFsyncGitDir(t *testing.T) { |
| 69 | err := EnableFsyncGitDir(false) |
nothing calls this directly
no test coverage detected
searching dependent graphs…