photoprism/pkg/media/preview_test.go
Michael Mayer 97c9962053 Index: Add experimental EPS and SVG vector graphics support #1177 #2207
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-02-11 20:18:04 +01:00

18 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)
}