mirror of
https://github.com/mcuadros/ascode
synced 2024-11-26 06:01:08 +01:00
14 lines
203 B
Go
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)
|
|
}
|