(t *testing.T)
| 38 | } |
| 39 | |
| 40 | func TestEmptyString(t *testing.T) { |
| 41 | l := NewState() |
| 42 | if err := LoadString(l, ""); err != nil { |
| 43 | t.Fatal(err.Error()) |
| 44 | } |
| 45 | l.Call(0, 0) |
| 46 | } |
| 47 | |
| 48 | func TestParserExhaustively(t *testing.T) { |
| 49 | _, err := exec.LookPath("luac") |
nothing calls this directly
no test coverage detected