Method: Anyt::Tests.load_all_tests
- Defined in:
- lib/anyt/tests.rb
.load_all_tests ⇒ Object
Load all test files
67 68 69 70 71 |
# File 'lib/anyt/tests.rb', line 67 def load_all_tests test_files_patterns.each do |pattern| Dir.glob(pattern).sort.each { |file| require file } end end |