woodpecker/vendor/github.com/bugagazavr/go-gitlab-client/util_test.go

12 lines
248 B
Go

package gogitlab
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestParameterEncoding(t *testing.T) {
assert.Equal(t, encodeParameter("namespace/project"), "namespace%2Fproject")
assert.Equal(t, encodeParameter("14"), "14")
}