1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
suite 'Creating XML with string writer:', ->
test 'Pretty print attributes - 1', ->
eq(
xml('test', { headless: true })
.ele('node', {"first":"1", "second":"2"})
.end({ pretty: true, width: 20 })
"""
<test>
<node first="1"
second="2"/>
</test>
"""
)
test 'Pretty print attributes - 2', ->
eq(
xml('test', { headless: true })
.ele('node', {"first":"1", "second":"2", "third":"33333333333333333333", "fourth": 4})
.end({ pretty: true, width: 10 })
"""
<test>
<node
first="1"
second="2"
third="33333333333333333333"
fourth="4"/>
</test>
"""
)
test 'Pretty print attributes - 3', ->
eq(
xml('test', { headless: true })
.ele('node', {"first":"1", "second":"2", "third":"33333333333333333333", "fourth": 4})
.end({ pretty: true, width: 1 })
"""
<test>
<node
first="1"
second="2"
third="33333333333333333333"
fourth="4"/>
</test>
"""
)
test 'Pretty print attributes - 4', ->
eq(
xml('test', { headless: true })
.ele('node', {"first":"1", "second":"2"}).ele('child')
.end({ pretty: true, width: 10 })
"""
<test>
<node
first="1"
second="2">
<child/>
</node>
</test>
"""
)
|