You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
telebot/middleware/middleware_test.go

31 lines
478 B
Go

package middleware
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
tele "gopkg.in/telebot.v3"
)
var b, _ = tele.NewBot(tele.Settings{Offline: true})
func TestRecover(t *testing.T) {
onError := func(err error) {
require.Error(t, err, "recover test")
}
h := func(c tele.Context) error {
panic("recover test")
}
assert.Panics(t, func() {
h(nil)
})
assert.NotPanics(t, func() {
Recover(onError)(h)(nil)
})
}