Skip to content

Instantly share code, notes, and snippets.

@dipth
Forked from boxedup/tests.watchr
Created February 14, 2011 12:08
Show Gist options
  • Save dipth/825784 to your computer and use it in GitHub Desktop.
Save dipth/825784 to your computer and use it in GitHub Desktop.
ENV["WATCHR"] = "1"
system 'clear'
puts "I'm watching you..."
def growl(message)
growlnotify = `which growlnotify`.chomp
title = "Watchr Test Results"
image = message.include?('0 failure') ? "~/.watchr/passed.png" : "~/.watchr/failed.png"
options = "-w -n Watchr --image '#{File.expand_path(image)}' -m '#{message}' '#{title}'"
system %(#{growlnotify} #{options} &)
end
def run(cmd)
puts(cmd)
#`#{cmd}`
system cmd
end
def run_test_file(file)
system('clear')
#result = run(%Q(ruby -I"lib:test" -rubygems #{file}))
result = run "bundle exec rspec #{file}"
#growl result.split("\n").last rescue nil
#puts result
end
def run_all_tests
system('clear')
result = run "rake spec"
#growl result.split("\n").last rescue nil
#puts result
end
def run_all_features
system('clear')
system("cucumber")
end
def related_test_files(path)
Dir['spec/**/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_spec.rb/ }
end
def run_suite
run_all_tests
#run_all_features
end
watch('spec/spec_helper\.rb') { run_all_tests }
watch('spec/.*/.*_spec\.rb') { |m| run_test_file(m[0]) }
watch('app/.*/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } }
#watch('features/.*/.*\.feature') { run_all_features }
# 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_suite
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment