You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
325 B
15 lines
325 B
package pushurl
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestFrameFormatFromValues(t *testing.T) {
|
|
values := url.Values{}
|
|
require.Equal(t, "labels_column", FrameFormatFromValues(values))
|
|
values.Set(frameFormatParam, "wide")
|
|
require.Equal(t, "wide", FrameFormatFromValues(values))
|
|
}
|
|
|