mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 02:15:12 +00:00
feat: First implement
This commit is contained in:
parent
a44743ef3f
commit
6caf676beb
105 changed files with 20966 additions and 0 deletions
22
chglog_test.go
Normal file
22
chglog_test.go
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue