rubyx/test/test_all.rb
Torsten Ruger 73b7e2b22f remove all test_all
Stop manually creating the list of tests (and searching missing).
Main level test_all does a search for all test_*
also possible to run by command line with starts
2017-04-13 17:00:56 +03:00

5 lines
93 B
Ruby

Dir["**/test_*.rb"].each { |f|
next if f.include?("stash/")
require_relative "../#{f}"
}