aboutsummaryrefslogblamecommitdiffstats
path: root/tests/rlp_test.go
blob: 70bd1962787a73d17365193fe6d7c7cc89092008 (plain) (tree)



















                                                                                
package tests

import (
    "path/filepath"
    "testing"
)

func TestRLP(t *testing.T) {
    err := RunRLPTest(filepath.Join(rlpTestDir, "rlptest.json"), nil)
    if err != nil {
        t.Fatal(err)
    }
}

func TestRLP_invalid(t *testing.T) {
    err := RunRLPTest(filepath.Join(rlpTestDir, "invalidRLPTest.json"), nil)
    if err != nil {
        t.Fatal(err)
    }
}