...

Source file src/github.com/clbanning/mxj/v2/data_test.go

Documentation: github.com/clbanning/mxj/v2

     1  package mxj
     2  
     3  var xmldata = []byte(`
     4  <book>
     5  	<author>William H. Gaddis</author>
     6  	<title>The Recognitions</title>
     7  	<review>One of the seminal American novels of the 20th century.</review>
     8  </book>
     9  <book>
    10  	<author>William H. Gaddis</author>
    11  	<title>JR</title>
    12  	<review>Won the National Book Award.</end_tag_error>
    13  </book>
    14  <book>
    15  	<author>Austin Tappan Wright</author>
    16  	<title>Islandia</title>
    17  	<review>An example of earlier 20th century American utopian fiction.</review>
    18  </book>
    19  <book>
    20  	<author>John Hawkes</author>
    21  	<title>The Beetle Leg</title>
    22  	<review>A lyrical novel about the construction of Ft. Peck Dam in Montana.</review>
    23  </book>
    24  <book>
    25  	<author>
    26  		<first_name>T.E.</first_name>
    27  		<last_name>Porter</last_name>
    28  	</author>
    29  	<title>King's Day</title>
    30  	<review>A magical novella.</review>
    31  </book>`)
    32  
    33  var jsondata = []byte(`
    34   {"book":{"author":"William H. Gaddis","review":"One of the great seminal American novels of the 20th century.","title":"The Recognitions"}}
    35  {"book":{"author":"Austin Tappan Wright","review":"An example of earlier 20th century American utopian fiction.","title":"Islandia"}}
    36  {"book":{"author":"John Hawkes","review":"A lyrical novel about the construction of Ft. Peck Dam in Montana.","title":"The Beetle Leg"}}
    37  {"book":{"author":{"first_name":"T.E.","last_name":"Porter"},"review":"A magical novella.","title":"King's Day"}}
    38  { "here":"we", "put":"in", "an":error }`)
    39  

View as plain text