alex wrote: > What is the upside to testing in Ruby on Rails? I'm learning Rails and > it seems like it's a waste of time to write code for something you > could test yourself...
I can test all the important parts of my app in 21 seconds. That's less time that it usually takes me to test just one thing by hand. If I had to test all these features myself every time I made a change that *might* break something (which is pretty much every change), then I'd be spending 90% of my time clicking around in a web browser. Instead I spend just half my time in a test directory. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

