When a test block includes multiple assertions, RSpec will exit on the first failure. Sometime we want to see what all the failures were.

Adding aggregate_failures to the block allows each assertion to run, giving a more detailed overview of what has failed.