(t *testing.T)
| 26 | var updateFlag = flag.Bool("update", false, "update the golden files with the test results") |
| 27 | |
| 28 | func TestWriteDevboxShellrc(t *testing.T) { |
| 29 | testdirs, err := filepath.Glob("testdata/shellrc/*") |
| 30 | if err != nil { |
| 31 | t.Fatal("Error globbing testdata:", err) |
| 32 | } |
| 33 | testWriteDevboxShellrc(t, testdirs) |
| 34 | } |
| 35 | |
| 36 | func testWriteDevboxShellrc(t *testing.T, testdirs []string) { |
| 37 | projectDir := "/path/to/projectDir" |
nothing calls this directly
no test coverage detected