FactoryBot: the secret weapon called @overrides
Intro FactoryBot is a great tool that simplifies test setup logic by hiding object build complexity within factory files. Thus, instead of repeating the same model logic again and again, you simply write something like this: create(:restaurant, :fancy) create(:restaurant_order, :in_fancy_restaurant)...