mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
24 lines
593 B
Go
24 lines
593 B
Go
package attestations
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/testing/assert"
|
|
"github.com/OffchainLabs/prysm/v7/testing/require"
|
|
)
|
|
|
|
func TestStop_OK(t *testing.T) {
|
|
s, err := NewService(t.Context(), &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())
|
|
}
|