gitlab.com/evatix-go/core@v1.3.55/tests/testwrappers/chmodhelpertestwrappers/CreatePathInstruction2.go (about)

     1  package chmodhelpertestwrappers
     2  
     3  import "gitlab.com/evatix-go/core/chmodhelper"
     4  
     5  var CreatePathInstruction2 = []*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  	{
    29  		DirWithFiles: chmodhelper.DirWithFiles{
    30  			Dir: "/temp/core/test-cases-3",
    31  			Files: []string{
    32  				"file-1.txt",
    33  				"file-2.txt",
    34  				"file-3.txt",
    35  			},
    36  		},
    37  		ApplyRwx: DefaultRwx,
    38  	},
    39  }