...

/

System Tests and Others

System Tests and Others

Learn to write tests for system testing and integration testing with Minitest.

In addition to ActiveSupport::TestCase, Rails provides some other subclasses of Minitest::TestCase that provide custom functionality. In most of these cases, the RSpec functionality we’ve already seen is built on top of these classes:

  • The ActionDispatch::SystemTestCase: The parent
...