photoprism/internal/meta/codec_test.go
2020-12-12 17:20:31 +01:00

26 lines
361 B
Go

package meta
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestData_CodecAvc1(t *testing.T) {
t.Run("true", func(t *testing.T) {
data := Data{
Codec: "avc1",
}
assert.Equal(t, true, data.CodecAvc())
})
t.Run("false", func(t *testing.T) {
data := Data{
Codec: "heic",
}
assert.Equal(t, false, data.CodecAvc())
})
}