February 2018
Intermediate to advanced
406 pages
9h 52m
English
Another way to run tests without loading the entire Rails framework is to write tests that don’t require the entire Rails framework. That sounds crazy, I know, since you’re writing a Rails application. Bear with me.
The tests you’ve written so far mostly fall into five groups:
End-to-end tests. These tests require the entire Rails stack since you’re testing the entire stack.
Tests that use only ActiveRecord and need the database. Right now this group includes tests for ActiveRecord finder methods and your action object tests that save to the database.
Request tests that require ActionPack and may or may not require ActiveRecord and may or may not touch the database, depending on how they’re stubbed.