Module: RunnyTest

Defined in:
lib/runny_test.rb,
lib/runny_test/version.rb

Constant Summary collapse

VERSION =
"0.0.1"

Instance Method Summary collapse

Instance Method Details

#run_testsObject



9
10
11
12
13
14
15
16
# File 'lib/runny_test.rb', line 9

def run_tests
  tests  = ARGV[1..ARGV.length]
  
  tests.each do |test|
    puts `echo Running #{test}`
    puts `ruby -Itest #{test}`
  end
end