MCPcopy Index your code
hub / github.com/expr-lang/expr / NoDirExistsf

Function NoDirExistsf

internal/testify/assert/assertion_format.go:529–534  ·  view source on GitHub ↗

NoDirExistsf checks whether a directory does not exist in the given path. It fails if the path points to an existing _directory_ only.

(t TestingT, path string, msg string, args ...interface{})

Source from the content-addressed store, hash-verified

527// NoDirExistsf checks whether a directory does not exist in the given path.
528// It fails if the path points to an existing _directory_ only.
529func NoDirExistsf(t TestingT, path string, msg string, args ...interface{}) bool {
530 if h, ok := t.(tHelper); ok {
531 h.Helper()
532 }
533 return NoDirExists(t, path, append([]interface{}{msg}, args...)...)
534}
535
536// NoErrorf asserts that a function returned no error (i.e. `nil`).
537//

Callers 2

NoDirExistsfFunction · 0.92
NoDirExistsfMethod · 0.70

Calls 2

NoDirExistsFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…