Callback interface (testing.T compatible)
| 78 | |
| 79 | // Callback interface (testing.T compatible) |
| 80 | type RepoCallback interface { |
| 81 | // Fatalf reports error and fails |
| 82 | Fatalf(format string, args ...interface{}) |
| 83 | // Errorf reports error and continues |
| 84 | Errorf(format string, args ...interface{}) |
| 85 | } |
| 86 | |
| 87 | type Repo struct { |
| 88 | // Path to the repo, working copy if non-bare |
no outgoing calls
no test coverage detected