@testCowsay.sayballoon("One line")==" __________\n< One line >\n ----------\n"
# Two-liner say balloon
@testCowsay.sayballoon("One line\nTwo line")==" __________\n/ One line \\\n\\ Two line /\n ----------\n"
# Multi-liner say balloon
@testCowsay.sayballoon("One line\nTwo line\nRed line\nBlue line")==" ___________\n/ One line \\\n| Two line |\n| Red line |\n\\ Blue line /\n -----------\n"
@testcowsaid("Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo")==" _________________________________________\n/ Rollin' down a long highway out through \\\n| New Mexico driftin' down to Santa Fe to |\n\\ ride a bull in a rodeo /\n -----------------------------------------\n\\ ^__^\n\\ (oo)\\_______\n (__)\\ )\\/\\\n ||----w |\n || ||\n"
# Long text, no wrap
@testcowsaid("Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo",nowrap=true)==" ________________________________________________________________________________________________________\n< Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo >\n --------------------------------------------------------------------------------------------------------\n\\ ^__^\n\\ (oo)\\_______\n (__)\\ )\\/\\\n ||----w |\n || ||\n"
# Long text, conflicting wrap instructions (nowrap should win)
@testcowsaid("Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo",wrap=80,nowrap=true)==" ________________________________________________________________________________________________________\n< Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo >\n --------------------------------------------------------------------------------------------------------\n\\ ^__^\n\\ (oo)\\_______\n (__)\\ )\\/\\\n ||----w |\n || ||\n"
# Long text, different wrap amount
@testcowsaid("Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to ride a bull in a rodeo",wrap=80)==" _________________________________________________________________________________\n/ Rollin' down a long highway out through New Mexico driftin' down to Santa Fe to \\\n\\ ride a bull in a rodeo /\n ---------------------------------------------------------------------------------\n\\ ^__^\n\\ (oo)\\_______\n (__)\\ )\\/\\\n ||----w |\n || ||\n"