powerwalk
powerwalk copied to clipboard
Write a test to ensure `SkipDir` is supported.
From the Go docs:
If there was a problem walking to the file or directory named by path, the incoming error will describe the problem and the function can decide how to handle that error (and Walk will not descend into that directory). If an error is returned, processing stops. The sole exception is that if path is a directory and the function returns the special value SkipDir, the contents of the directory are skipped and processing continues as usual on the next file.
Write a test to ensure SkipDir is supported.
NOTE: this is not supported.