...

Source file src/github.com/json-iterator/go/skip_tests/array_test.go

Documentation: github.com/json-iterator/go/skip_tests

     1  package skip_tests
     2  
     3  func init() {
     4  	testCases = append(testCases, testCase{
     5  		ptr: (*[]interface{})(nil),
     6  		inputs: []string{
     7  			`[]`,             // valid
     8  			`[1]`,            // valid
     9  			`[  1, "hello"]`, // valid
    10  			`[abc]`,          // invalid
    11  			`[`,              // invalid
    12  			`[[]`,            // invalid
    13  		},
    14  	})
    15  }
    16  

View as plain text