mirror of https://github.com/aldy505/decrr.git
25 lines
629 B
Go
25 lines
629 B
Go
|
package decrr_test
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/aldy505/decrr"
|
||
|
)
|
||
|
|
||
|
func TestWrap(t *testing.T) {
|
||
|
x := errors.New("why does a chicken cross the road?")
|
||
|
w := decrr.Wrap(x)
|
||
|
wd, _ := os.Getwd()
|
||
|
|
||
|
var expected string
|
||
|
expected += "why does a chicken cross the road?\n\n"
|
||
|
expected += "github.com/aldy505/decrr_test.TestWrap " + wd + "/decrr_test.go:13\n"
|
||
|
expected += "testing.tRunner /usr/local/go/src/testing/testing.go:1259\n"
|
||
|
expected += "runtime.goexit /usr/local/go/src/runtime/asm_amd64.s:1581"
|
||
|
|
||
|
if w.Error() != expected {
|
||
|
t.Error("different than expected:", w.Error(), "\nexpected:", expected)
|
||
|
}
|
||
|
}
|