photoprism/pkg/colors/luminance_test.go

13 lines
173 B
Go

package colors
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestLuminance_Hex(t *testing.T) {
lum := Luminance(1)
assert.Equal(t, "1", lum.Hex())
}