gitlab.com/evatix-go/core@v1.3.55/tests/testwrappers/chmodhelpertestwrappers/defaultValues.go (about) 1 package chmodhelpertestwrappers 2 3 import ( 4 "gitlab.com/evatix-go/core/chmodhelper/chmodins" 5 ) 6 7 var ( 8 DefaultRwx = chmodins.RwxOwnerGroupOther{ 9 Owner: "rwx", 10 Group: "r-x", 11 Other: "r--", 12 } 13 14 DefaultExpected = chmodins.RwxOwnerGroupOther{ 15 Owner: "r-x", 16 Group: "r-x", 17 Other: "-w-", 18 } 19 )