I currently have three ruby files containing tests written with Minitest, and I'd like to run them all at once but I've not had much luck. If I was using RSpec, I'd just do rspec spec/*
and all the different tests would run as if from one big test file.
Things I've tried:
ruby test/game_test.rb test/board_test.rb test/player_test.rb
ruby test/*
Any help will be appreciated, thanks.