woodpecker/remote/coding/util_test.go

19 lines
279 B
Go
Raw Normal View History

2017-07-22 09:12:09 +00:00
package coding
import (
"testing"
"github.com/franela/goblin"
)
func Test_util(t *testing.T) {
g := goblin.Goblin(t)
g.Describe("Coding util", func() {
g.It("Should form project full name", func() {
g.Assert(projectFullName("gk", "prj")).Equal("gk/prj")
})
})
}