(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestEnableFsyncGitDir(t *testing.T) { |
| 69 | err := EnableFsyncGitDir(false) |
| 70 | checkFatal(t, err) |
| 71 | |
| 72 | err = EnableFsyncGitDir(true) |
| 73 | checkFatal(t, err) |
| 74 | } |
| 75 | |
| 76 | func TestCachedMemory(t *testing.T) { |
| 77 | current, allowed, err := CachedMemory() |
nothing calls this directly
no test coverage detected
searching dependent graphs…