2020-10-20 10:07:27 +02:00
|
|
|
package form
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2020-11-21 18:08:41 +01:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2020-10-20 10:07:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
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())
|
|
|
|
})
|
|
|
|
}
|