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.
22 lines
386 B
22 lines
386 B
package model
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/conf"
|
|
"github.com/jinzhu/gorm"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestMigration(t *testing.T) {
|
|
asserts := assert.New(t)
|
|
conf.DatabaseConfig.Type = "sqlite"
|
|
DB, _ = gorm.Open("sqlite", ":memory:")
|
|
|
|
asserts.NotPanics(func() {
|
|
migration()
|
|
})
|
|
conf.DatabaseConfig.Type = "mysql"
|
|
DB = mockDB
|
|
}
|