mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
24 lines
604 B
Go
24 lines
604 B
Go
package attestations
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestStop_OK(t *testing.T) {
|
|
s, err := NewService(context.Background(), &Config{})
|
|
require.NoError(t, err)
|
|
require.NoError(t, s.Stop(), "Unable to stop attestation pool service")
|
|
assert.ErrorContains(t, context.Canceled.Error(), s.ctx.Err(), "Context was not canceled")
|
|
}
|
|
|
|
func TestStatus_Error(t *testing.T) {
|
|
err := errors.New("bad bad bad")
|
|
s := &Service{err: err}
|
|
assert.ErrorContains(t, s.err.Error(), s.Status())
|
|
}
|