photoprism/pkg/report/bool_test.go

14 lines
209 B
Go
Raw Normal View History

2024-01-17 14:55:20 +01:00
package report
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBool(t *testing.T) {
assert.Equal(t, "yes", Bool(true, "yes", "no"))
assert.Equal(t, "no", Bool(false, "yes", "no"))
}