97c9962053
Signed-off-by: Michael Mayer <michael@photoprism.app>
17 lines
301 B
Go
17 lines
301 B
Go
package media
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPreviewFileTypes(t *testing.T) {
|
|
assert.Equal(t, []string{"jpg", "png"}, PreviewFileTypes)
|
|
}
|
|
|
|
func TestIsPreview(t *testing.T) {
|
|
assert.Equal(t, gorm.Expr("'jpg','png'"), PreviewExpr)
|
|
}
|