neo-go/pkg/config/config_test.go

15 lines
258 B
Go
Raw Normal View History

2021-03-11 11:39:51 +00:00
package config
import (
"testing"
"github.com/stretchr/testify/require"
)
const testConfigPath = "./testdata/protocol.test.yml"
func TestUnexpectedNativeUpdateHistoryContract(t *testing.T) {
_, err := LoadFile(testConfigPath)
require.Error(t, err)
}