photoprism/internal/meta/video_test.go

25 lines
359 B
Go
Raw Normal View History

package meta
import (
"testing"
2020-11-21 17:08:41 +00:00
"github.com/stretchr/testify/assert"
)
func TestData_CodecAvc(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())
})
}