[/musicextras/musicextras: changeset 51 Zachary P. Landau **20041117221455 Wrapped -T tests to catch exceptions ] { hunk ./NEWS 2 + - Better error handling with -T +Changes in 0.6.5 hunk ./README 153 -See the BUGS list for the full list. +If you are getting a lot (or only) failures, try testing the plugins by running +"musicextras -T". If any of the plugins fail, check the webpage to see if the +problem is already known. If not, send me an email and let me know. + +See the BUGS list for the full list. hunk ./lib/musicextras/pusher.rb 94 - passed, msg = MusicExtras.const_get(plugin).new.test() + begin + passed, msg = MusicExtras.const_get(plugin).new.test() + rescue Exception => e + passed = false + msg = [e.message] + end }