Add regex command implementation
This commit is contained in:
8
tests/integration/helpers_test.go
Normal file
8
tests/integration/helpers_test.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package integration
|
||||
|
||||
import "os"
|
||||
|
||||
func fileExistsTestHelper(path string) bool {
|
||||
_, err := os.Stat(path)
|
||||
return err == nil
|
||||
}
|
||||
Reference in New Issue
Block a user