bbgo_origin/pkg/migrations/mysql/migration_api_test.go
2022-06-17 16:07:00 +09:00

21 lines
322 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: {},
3: {},
})
}