photoprism/internal/form/selection_test.go
2020-05-06 17:05:06 +02:00

18 lines
449 B
Go

package form
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestSelection_Empty(t *testing.T) {
t.Run("not empty", func(t *testing.T) {
sel := Selection{Photos: []string{"foo", "bar"}, Albums: []string{}, Labels: []string{}}
assert.Equal(t, false, sel.Empty())
})
t.Run("empty", func(t *testing.T) {
sel := Selection{Photos: []string{}, Albums: []string{}, Labels: []string{}}
assert.Equal(t, true, sel.Empty())
})
}