24 lines
410 B
Go
24 lines
410 B
Go
package flow
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/yaoapp/gou"
|
|
"github.com/yaoapp/xiang/config"
|
|
)
|
|
|
|
func TestLoad(t *testing.T) {
|
|
gou.Flows = make(map[string]*gou.Flow)
|
|
Load(config.Conf)
|
|
LoadFrom("not a path", "404.")
|
|
check(t)
|
|
}
|
|
|
|
func check(t *testing.T) {
|
|
keys := []string{}
|
|
for key := range gou.Flows {
|
|
keys = append(keys, key)
|
|
}
|
|
assert.Equal(t, 21, len(keys))
|
|
}
|