Files
podman/pkg/machine/config_test.go
Jason T. Greene ef7727238a Refactor env dir and port functions into new leaf pkgs
[NO NEW TESTS NEEDED]

Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
2024-03-04 23:54:31 -06:00

21 lines
430 B
Go

//go:build amd64 || arm64
package machine
import (
"path/filepath"
"testing"
"github.com/containers/podman/v5/pkg/machine/env"
"github.com/stretchr/testify/assert"
)
func TestGetSSHIdentityPath(t *testing.T) {
name := "p-test"
datadir, err := env.GetGlobalDataDir()
assert.Nil(t, err)
identityPath, err := env.GetSSHIdentityPath(name)
assert.Nil(t, err)
assert.Equal(t, identityPath, filepath.Join(datadir, name))
}