Creates a file with the content "test" at path
(path string)
| 28 | |
| 29 | // Creates a file with the content "test" at path |
| 30 | func createTestInclude(path string) error { |
| 31 | // Create a config file for OpenCamliInclude to play with |
| 32 | cf, e := os.Create(path) |
| 33 | if e != nil { |
| 34 | return e |
| 35 | } |
| 36 | fmt.Fprintf(cf, "test") |
| 37 | return cf.Close() |
| 38 | } |
| 39 | |
| 40 | func findCamliInclude(configFile string) (path string, err error) { |
| 41 | return NewJSONConfigParser().ConfigFilePath(configFile) |
no test coverage detected