harness-drone/vendor/github.com/Bugagazavr/go-gitlab-client/util_test.go
2015-09-29 18:21:17 -07:00

11 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")
}