I downloaded source code for a project, found a bug, and fixed it.
Now I want to run tests to find out if I have broken anything.
The Tests are in minitest D
This can also be done via a Makefile.
default: echo "Dir.glob('./test/*_test.rb').each { |file| require file}" | ruby
running make will run all your tests.
make