(t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func isolateConfigDir(t *testing.T) { |
| 14 | t.Helper() |
| 15 | paths.SetConfigDir(filepath.Join(t.TempDir(), "config")) |
| 16 | t.Cleanup(func() { paths.SetConfigDir("") }) |
| 17 | } |
| 18 | |
| 19 | func TestReadStatus_DefaultsToUnanswered(t *testing.T) { |
| 20 | isolateConfigDir(t) |
no test coverage detected