1
1
mirror of https://github.com/mcuadros/ascode synced 2024-11-26 06:01:08 +01:00
ascode/starlark/runtime/runtime_test.go
2020-03-17 14:55:39 +01:00

14 lines
203 B
Go

package runtime
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestLoad(t *testing.T) {
rc := NewRuntime(nil)
_, err := rc.ExecFile("testdata/load.star")
assert.NoError(t, err)
}