github.com/mikespook/gleam@v0.0.0-20170807230223-29a9392b522c/lua_test.go (about)

     1  package gleam
     2  
     3  import (
     4  	"testing"
     5  	//	"github.com/aarzilli/golua/lua"
     6  	//	"github.com/stevedonovan/luar"
     7  )
     8  
     9  func TestLuaEnv(t *testing.T) {
    10  	resetWD()
    11  
    12  	e := newLuaEnv("./scripts/")
    13  	var config Config
    14  	if err := e.Init(&config); err != nil {
    15  		t.Fatal(err)
    16  	}
    17  	e.Final()
    18  }