TIL: let! and before order is important
I’ve just come across this issue. It’s minor, but it tripped me up! In RSpec, there are three methods I find myself using all the time: before - this is equivalent to the setup method present in many assertion-based test frameworks, and runs before each test. let - this is a lazy-evaluated variable that will be made available to the...