photoprism/internal/form/feedback_test.go
2020-11-21 18:08:41 +01:00

19 lines
396 B
Go

package form
import (
"testing"
"github.com/stretchr/testify/assert"
)
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())
})
}