pulumi/cmd/config_test.go

19 lines
538 B
Go
Raw Normal View History

2017-10-18 19:10:04 +02:00
// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
package cmd
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/pulumi/pulumi/pkg/tokens"
"github.com/pulumi/pulumi/pkg/workspace"
)
2017-10-18 19:10:04 +02:00
func TestPrettyKeyForProject(t *testing.T) {
proj := &workspace.Project{Name: tokens.PackageName("test-package"), Runtime: "nodejs"}
assert.Equal(t, "foo", prettyKeyForProject("test-package:config:foo", proj))
assert.Equal(t, "other-package:config:bar", prettyKeyForProject("other-package:config:bar", proj))
2017-10-18 19:10:04 +02:00
}