Original test case - keeping for backward compatibility
(t *testing.T)
| 285 | |
| 286 | // Original test case - keeping for backward compatibility |
| 287 | func TestReadFileOriginal(t *testing.T) { |
| 288 | var p getter.Providers |
| 289 | filePath := "%a.txt" |
| 290 | _, err := readFile(filePath, p) |
| 291 | if err == nil { |
| 292 | t.Error("Expected error when has special strings") |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | func TestMergeValuesCLI(t *testing.T) { |
| 297 | tests := []struct { |