mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
13 lines
183 B
Go
13 lines
183 B
Go
package kzg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
|
)
|
|
|
|
func TestStart(t *testing.T) {
|
|
require.NoError(t, Start())
|
|
require.NotNil(t, kzgContext)
|
|
}
|