Created
March 17, 2009 19:12
-
-
Save josevalim/80722 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'autotest' | |
Autotest.add_hook :initialize do |at| | |
at.clear_mappings | |
# watch out: Ruby bug (1.8.6): | |
# %r(/) != /\// | |
at.add_mapping(%r%^spec/.*_spec.rb$%) { |filename, _| | |
filename | |
} | |
at.add_mapping(%r%^lib/(.*)\.rb$%) { |_, m| | |
["spec/#{m[1]}_spec.rb"] | |
} | |
at.add_mapping(%r%^spec/(spec_helper|shared/.*)\.rb$%) { | |
at.files_matching %r%^spec/.*_spec\.rb$% | |
} | |
end | |
class RspecCommandError < StandardError; end | |
class Autotest::Rspec < Autotest | |
def initialize | |
super | |
self.failed_results_re = /^\d+\)\n(?:\e\[\d*m)?(?:.*?in )?'([^\n]*)'(?: FAILED)?(?:\e\[\d*m)?\n(.*?)\n\n/m | |
self.completed_re = /\n(?:\e\[\d*m)?\d* examples?/m | |
end | |
def consolidate_failures(failed) | |
filters = new_hash_of_arrays | |
failed.each do |spec, trace| | |
if trace =~ /\n(\.\/)?(.*spec\.rb):[\d]+:/ | |
filters[$2] << spec | |
end | |
end | |
return filters | |
end | |
def make_test_cmd(files_to_test) | |
return '' if files_to_test.empty? | |
spec_program = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'bin', 'spec')) | |
if ENV['RSPEC_VERSION'] | |
spec_program.gsub!('1.2.0', ENV['RSPEC_VERSION']) | |
return "#{ruby} #{spec_program} #{files_to_test.keys.flatten.join(' ')} #{add_options_if_present}" | |
else | |
spec_program.gsub!('1.2.0', ENV['RSPEC_VERSION']) | |
return "#{ruby} #{spec_program} --autospec #{files_to_test.keys.flatten.join(' ')} #{add_options_if_present}" | |
end | |
end | |
def add_options_if_present # :nodoc: | |
File.exist?("spec/spec.opts") ? "-O spec/spec.opts " : "" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment