47defc861c
Signed-off-by: Michael Mayer <michael@photoprism.app>
17 lines
338 B
Go
17 lines
338 B
Go
package sortby
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRandomExpr(t *testing.T) {
|
|
mysql, _ := gorm.GetDialect(MySQL)
|
|
sqlite3, _ := gorm.GetDialect(SQLite3)
|
|
|
|
assert.Equal(t, gorm.Expr("RAND()"), RandomExpr(mysql))
|
|
assert.Equal(t, gorm.Expr("RANDOM()"), RandomExpr(sqlite3))
|
|
}
|