Files
prysm/beacon-chain/operations/attestations/service_test.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

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())
}