photoprism/internal/form/feedback_test.go
2020-10-20 10:07:27 +02:00

18 lines
395 B
Go

package form
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestFeedback_Empty(t *testing.T) {
t.Run("true", func(t *testing.T) {
feedback := Feedback{}
assert.True(t, feedback.Empty())
})
t.Run("false", func(t *testing.T) {
feedback := Feedback{Message: "I found a bug", Category: "Bug Report", UserEmail: "test@test.com"}
assert.False(t, feedback.Empty())
})
}