gitlab.com/evatix-go/core@v1.3.55/tests/testwrappers/chmodhelpertestwrappers/CreatePathInstruction1.go (about) 1 package chmodhelpertestwrappers 2 3 import "gitlab.com/evatix-go/core/chmodhelper" 4 5 var CreatePathInstruction1 = []*chmodhelper.DirFilesWithRwxPermission{ 6 { 7 DirWithFiles: chmodhelper.DirWithFiles{ 8 Dir: "/temp/core/test-cases", 9 Files: []string{ 10 "file-1.txt", 11 "file-2.txt", 12 "file-3.txt", 13 }, 14 }, 15 ApplyRwx: DefaultRwx, 16 }, 17 { 18 DirWithFiles: chmodhelper.DirWithFiles{ 19 Dir: "/temp/core/test-cases-2", 20 Files: []string{ 21 "file-1.txt", 22 "file-2.txt", 23 "file-3.txt", 24 }, 25 }, 26 ApplyRwx: DefaultRwx, 27 }, 28 }