This post originated from an RSS feed registered with Ruby Buzz
by Philippe Hanrigou.
Original Post: Getting started with Autotest
Feed Title: Latest updates from PH7
Feed URL: http://ph7spot.com/updates/atom
Feed Description: Tips and resources on Ruby, Java, Unix, Object-Oriented Programming, Design Patterns and Agile methodologies.
Why manually run your tests, when the computer can do it for you!
Autotest is a great tool to speed up
test-driven development with Ruby or Ruby on Rails. Autotest makes your coding session even more
productive as it automatically runs a subset of your test suite each time you change a file.
Autotest is smart -- it figures out which subset to run based on the files you've changed.
Think of it as Continuous Testing.
Autotest source code is well-documented (rdoc) but finding a
high level overview online is a little more challenging. This article will get you up and running
in no time, so that you may concentrate on writing code.
Let's get started!