mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
20 lines
313 B
Go
20 lines
313 B
Go
package beacontest_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "embed"
|
|
|
|
"github.com/ledgerwatch/erigon/cl/beacon/beacontest"
|
|
)
|
|
|
|
//go:embed harness_test_data.yml
|
|
var testData []byte
|
|
|
|
func TestSimpleHarness(t *testing.T) {
|
|
beacontest.Execute(
|
|
beacontest.WithTesting(t),
|
|
beacontest.WithTestFromBytes("test", testData),
|
|
)
|
|
}
|