mirror of
https://github.com/grafana/grafana.git
synced 2024-12-30 10:47:30 -06:00
8c765e8068
* API: Rewrite tests from goconvey Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
21 lines
401 B
Go
21 lines
401 B
Go
package pluginproxy
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestInterpolateString(t *testing.T) {
|
|
data := templateData{
|
|
SecureJsonData: map[string]string{
|
|
"Test": "0asd+asd",
|
|
},
|
|
}
|
|
|
|
interpolated, err := interpolateString("{{.SecureJsonData.Test}}", data)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "0asd+asd", interpolated)
|
|
}
|