A tool to migrate GitHub Repositories to Gitea including all issues
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
gitea-github-migrator/config/config_test.go

11 lines
295 B

package config
import (
"github.com/jinzhu/configor"
"github.com/stretchr/testify/assert"
"testing"
)
func TestReadConfig(t *testing.T) {
assert.NoError(t, configor.New(&configor.Config{ErrorOnUnmatchedKeys: true}).Load(&Config, "../config.example.yml"), "Parse example config failed.")
}