1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-19 12:12:26 +02:00
goreleaser/pipeline/repos/repos_test.go
Carlos Alexandro Becker ddec194c7e
wip ctx
2017-01-14 12:34:22 -02:00

15 lines
201 B
Go

package repos
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSplit(t *testing.T) {
assert := assert.New(t)
a, b := split("a/b")
assert.Equal("a", a)
assert.Equal("b", b)
}