hcl/zcl/json/public_test.go
Martin Atkins 160f56abb1 json: beginnings of parsing JSON into File objects
The returned file objects are not actually functional yet, but this
establishes the interface.
2017-05-18 07:57:04 -07:00

17 lines
274 B
Go

package json
import (
"testing"
)
func TestParse_nonObject(t *testing.T) {
src := `true`
file, diags := Parse([]byte(src), "")
if len(diags) != 1 {
t.Errorf("got %d diagnostics; want 1", len(diags))
}
if file != nil {
t.Errorf("got non-nil File; want nil")
}
}