You've already forked json-iterator
mirror of
https://github.com/json-iterator/go.git
synced 2025-06-15 22:50:24 +02:00
implement skip number and string strictly
This commit is contained in:
14
skip_tests/string/inputs.go
Normal file
14
skip_tests/string/inputs.go
Normal file
@ -0,0 +1,14 @@
|
||||
package test
|
||||
|
||||
type typeForTest string
|
||||
|
||||
var inputs = []string{
|
||||
`""`, // valid
|
||||
`"hello"`, // valid
|
||||
`"`, // invalid
|
||||
`"\"`, // invalid
|
||||
`"\x00"`, // invalid
|
||||
"\"\x00\"", // invalid
|
||||
"\"\t\"", // invalid
|
||||
`"\t"`, // valid
|
||||
}
|
Reference in New Issue
Block a user