gitlab.com/evatix-go/core@v1.3.55/tests/testwrappers/chmodhelpertestwrappers/SingleRwxTestCases.go (about) 1 package chmodhelpertestwrappers 2 3 import ( 4 "gitlab.com/evatix-go/core/chmodhelper" 5 "gitlab.com/evatix-go/core/chmodhelper/chmodclasstype" 6 ) 7 8 var SingleRwxTestCases = []chmodhelper.SingleRwx{ 9 { 10 Rwx: "r-x", 11 ClassType: chmodclasstype.Other, 12 }, 13 { 14 Rwx: "---", 15 ClassType: chmodclasstype.Other, 16 }, 17 { 18 Rwx: "--x", 19 ClassType: chmodclasstype.Other, 20 }, 21 { 22 Rwx: "r-x", 23 ClassType: chmodclasstype.Other, 24 }, 25 }