mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
22 lines
297 B
Go
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)
|
|
}
|