package persistence import "testing" func TestCheckDirWritable(t *testing.T) { err := CheckDirWritable("/tmp") if err != nil { t.Fatal(err) } }