blob: 48fedb5da7d78c1f73602c92072437b74587a230 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.13
// +build go1.13
package xerrors_test
import (
"errors"
"testing"
"golang.org/x/xerrors"
)
func TestErrorsIs(t *testing.T) {
var errSentinel = errors.New("sentinel")
got := errors.Is(xerrors.Errorf("%w", errSentinel), errSentinel)
if !got {
t.Error("got false, want true")
}
got = errors.Is(xerrors.Errorf("%w: %s", errSentinel, "foo"), errSentinel)
if !got {
t.Error("got false, want true")
}
}
|