Rodzik's closing prescription for testing non-deterministic code: don't try to test randomness directly. Instead understand where the randomness lives, extract it behind an abstraction (like the `Dice` interface), and control it in tests via a fake or injected implementation. Applies equally to obvious `rand`/`Kernel#rand` calls and hidden ones like `Time.current`.