git-chglog/chglog_test.go
2018-02-10 18:11:50 +09:00

22 lines
297 B
Go

package chglog
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func workdir(dir string) func() {
cwd, _ := os.Getwd()
os.Chdir(dir)
return func() {
os.Chdir(cwd)
}
}
func TestGenerator(t *testing.T) {
t.Skip("TODO: test")
assert := assert.New(t)
assert.True(true)
}