(t *testing.T, p, fileName string)
| 381 | } |
| 382 | |
| 383 | func assertPatternNotMatch(t *testing.T, p, fileName string) { |
| 384 | t.Helper() |
| 385 | |
| 386 | w := newPattern(t, p) |
| 387 | |
| 388 | assert.False(t, w.allowReload(&watcher.Event{PathName: normalizePath(t, fileName)})) |
| 389 | } |
no test coverage detected