Sha256: 97424ed1b8b37323af41a8e8030f733041cf41345f305c6e9f2153eebac44a6e

Contents?: true

Size: 944 Bytes

Versions: 49

Compression:

Stored size: 944 Bytes

Contents

ENV["WATCHR"] = "1"
system 'clear'

def run(cmd)
  puts(cmd)
  system cmd
end

def run_test_file(file)
  system('clear')
  run(%Q(ruby -I"lib:test" -rubygems #{file}))
end

def run_all_tests
  system('clear')
  run('rake test')
end

def related_test_files(path)
  Dir['test/**/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_test.rb/ }
end

watch('test/teststrap\.rb') { run_all_tests }
watch('test/(.*).*_test\.rb') { |m| run_test_file(m[0]) }
watch('lib/.*/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } }

# Ctrl-\
Signal.trap 'QUIT' do
  puts " --- Running all tests ---\n\n"
  run_all_tests
end

@interrupted = false

# Ctrl-C
Signal.trap 'INT' do
  if @interrupted then
    @wants_to_quit = true
    abort("\n")
  else
    puts "Interrupt a second time to quit"
    @interrupted = true
    Kernel.sleep 1.5
    # raise Interrupt, nil # let the run loop catch it
    run_all_tests
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

Version Path
rabl-0.7.1 test.watchr
rabl-0.7.0 test.watchr
rabl-0.6.14 test.watchr
rabl-0.6.13 test.watchr
rabl-0.6.12 test.watchr
rabl-0.6.11 test.watchr
rabl-0.6.10 test.watchr
rabl-0.6.9 test.watchr
rabl-0.6.8 test.watchr
rabl-0.6.7 test.watchr
rabl-0.6.6 test.watchr
rabl-0.6.5 test.watchr
rabl-0.6.3 test.watchr
rabl-0.6.2 test.watchr
rabl-0.6.1 test.watchr
rabl-0.6.0 test.watchr
rabl-0.5.5.j test.watchr
rabl-0.5.5.i test.watchr
rabl-0.5.5.h test.watchr
rabl-0.5.5.g test.watchr