DEV Community

Discussion on: Is Minitest::Assertions#assert Ever the Best Choice?

Collapse
 
burdettelamar profile image
Burdette Lamar

The place where I use Minitest::Assertions is in developing my own libraries. In that work I allow no bug to live more than a day, so all I really need is the expected/actual values and the line number. And the assertions give me those.

For other work (automated testing for legacy software, for example), I use different toolsets altogether.