lczub / robotframework-magik

Robot Framework high level keywords for automated testing Smallworld Magik images
12 stars 1 forks source link

keyword 'Execute Magik Command' should remove trailing spaces #5

Closed lczub closed 11 years ago

lczub commented 11 years ago

following test steps does not work with v0.2.0

${out}=   Execute Magik Command   write("1 BigBird ")
Should Be Equal   '${out}'   '1 BigBird'
lczub commented 11 years ago

Workaround - use following test steps

    ${out}=   Execute Magik Command   write("1 BigBird ")
    Should Contain   ${out}   1 BigBird