summaryrefslogtreecommitdiff
path: root/errors_test.go
blob: 6bb650af838042f576643004e6ce7b8d0bdfb07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package roadrunner

import (
	"errors"
	"github.com/stretchr/testify/assert"
	"testing"
)

func Test_JobError_Error(t *testing.T) {
	e := JobError([]byte("error"))
	assert.Equal(t, "error", e.Error())
}

func Test_WorkerError_Error(t *testing.T) {
	e := WorkerError{Worker: nil, Caused: errors.New("error")}
	assert.Equal(t, "error", e.Error())
}