github.com/mcuadros/ascode@v1.3.1/starlark/runtime/runtime_test.go (about)

     1  package runtime
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestLoad(t *testing.T) {
    10  	rc := NewRuntime(nil)
    11  	_, err := rc.ExecFile("testdata/load.star")
    12  	assert.NoError(t, err)
    13  }