bbgo_origin/pkg/migrations/mysql/migration_api_test.go
2024-01-24 15:56:04 +08:00

22 lines
451 B
Go

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