(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func TestIgnore_DefaultPatternsExist(t *testing.T) { |
| 296 | patterns := config.DefaultIgnorePatterns() |
| 297 | if len(patterns) == 0 { |
| 298 | t.Fatal("expected default ignore patterns to be non-empty") |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | func TestIgnore_DefaultConfigHasPatterns(t *testing.T) { |
| 303 | conf := config.NewDefault() |
nothing calls this directly
no test coverage detected