File: all.rb

package info (click to toggle)
ruby-jnunemaker-matchy 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 312 kB
  • sloc: ruby: 2,939; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
dir = File.dirname(__FILE__)
Dir[File.expand_path("#{dir}/*.rb")].uniq.each do |file|
  if file =~ /\/test_\w+\.rb$/ 
    puts file
    require file 
  end
end