This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/plancontext/context_test.go

17 lines
293 B
Go
Raw Permalink Normal View History

package plancontext
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestContext(t *testing.T) {
ctx := New()
secret := ctx.Secrets.New("test")
get, err := ctx.Secrets.FromValue(secret.MarshalCUE())
require.NoError(t, err)
require.Equal(t, "test", get.PlainText())
}