photoprism/pkg/colors/profiles_test.go

13 lines
218 B
Go
Raw Normal View History

2023-08-30 14:30:06 +00:00
package colors
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestProfile_Equal(t *testing.T) {
assert.True(t, ProfileDisplayP3.Equal("Display P3"))
assert.False(t, ProfileDisplayP3.Equal(""))
}