mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
cda14447ad
Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
12 lines
233 B
Go
12 lines
233 B
Go
package spectest
|
|
|
|
import (
|
|
"io/fs"
|
|
"testing"
|
|
)
|
|
|
|
var UnimplementedHandler = HandlerFunc(func(t *testing.T, root fs.FS, c TestCase) (err error) {
|
|
t.Skipf("Handler not implemented: %s/%s", c.RunnerName, c.HandlerName)
|
|
return nil
|
|
})
|