bbgo_origin/pkg/migrations/mysql/migration_api_test.go
2022-04-26 18:48:27 +08:00

21 lines
364 B
Go

package mysql
import (
"testing"
"github.com/c9s/rockhopper"
"github.com/stretchr/testify/assert"
)
func TestGetMigrationsMap(t *testing.T) {
mm := GetMigrationsMap()
assert.NotEmpty(t, mm)
}
func TestMergeMigrationsMap(t *testing.T) {
MergeMigrationsMap(map[int64]*rockhopper.Migration{
2: &rockhopper.Migration{},
3: &rockhopper.Migration{},
})
}