pharo-contributions / XML-XMLParser

XML Parser for Pharo
MIT License
11 stars 17 forks source link

BaselineOfXMLParser>>#xmlWriterOn: should use floating tag #33

Closed astares closed 5 months ago

astares commented 5 months ago

Otherwise it will not profit from changes as https://github.com/pharo-contributions/XML-XMLWriter/issues/19

astares commented 5 months ago
BaselineOfXMLParser >> xmlWriterOn: spec [

    spec
        baseline: 'XMLWriter'
      with: [ 
            spec
                loads: #('Core');
                repository: 'github://pharo-contributions/XML-XMLWriter:v3.1.x/src' ]. 

    spec 
        project: 'XMLWriter Tests' copyFrom: 'XMLWriter' with: [ spec loads: #('Tests') ];  
        project: 'XMLWriter Tools' copyFrom: 'XMLWriter' with: [ spec loads: #('Tools') ] 
]

already done