mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
13 lines
140 B
Go
13 lines
140 B
Go
package deployer
|
|
|
|
import (
|
|
"os"
|
|
"path"
|
|
"testing"
|
|
)
|
|
|
|
func TestPath(t *testing.T) {
|
|
dir := path.Dir("./a/b/c")
|
|
os.MkdirAll(dir, 0o755)
|
|
}
|