What unit testing framework is used for Rails?
I am reading a book (Pragmatic Programmers Agile Dev. With Rails) that shows how to run unit tests in Rails.
The book showed a set of default tests for rails (subclass Test::Unit). Is this the main testing base used by the Rails community? Do I use RSpec with a regular ruby โโand would like to use it in Rails as well (if this is not too much trouble)?
source
share