Class: Autotest::Rspec2

Inherits:
Autotest
  • Object
show all
Defined in:
lib/autotest/rspec2.rb

Constant Summary collapse

SPEC_PROGRAM =
File.expand_path('../../../bin/rspec', __FILE__)

Instance Method Summary collapse

Constructor Details

#initializeRspec2

Returns a new instance of Rspec2.



10
11
12
13
14
15
16
17
18
19
# File 'lib/autotest/rspec2.rb', line 10

def initialize
  super()
  clear_mappings
  setup_rspec_project_mappings

  # Example for Ruby 1.8: http://rubular.com/r/AOXNVDrZpx
  # Example for Ruby 1.9: http://rubular.com/r/85ag5AZ2jP
  self.failed_results_re = /^\s*\d+\).*\n\s+(?:\e\[\d*m)?Failure.*(\n(?:\e\[\d*m)?\s+#\s(.*)?:\d+(?::.*)?(?:\e\[\d*m)?)+$/m
  self.completed_re = /\n(?:\e\[\d*m)?\d* examples?/m
end

Instance Method Details

#consolidate_failures(failed) ⇒ Object



33
34
35
36
37
38
39
40
41
# File 'lib/autotest/rspec2.rb', line 33

def consolidate_failures(failed)
  filters = new_hash_of_arrays
  failed.each do |spec, trace|
    if trace =~ /(.*spec\.rb)/
      filters[$1] << spec
    end
  end
  return filters
end

#gemfile?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/autotest/rspec2.rb', line 63

def gemfile?
  File.exist?('./Gemfile')
end

#make_test_cmd(files_to_test) ⇒ Object



43
44
45
46
# File 'lib/autotest/rspec2.rb', line 43

def make_test_cmd(files_to_test)
  files_to_test.empty? ? '' :
    "#{prefix}#{ruby}#{suffix} -S #{SPEC_PROGRAM} --tty #{normalize(files_to_test).keys.flatten.map { |f| "'#{f}'"}.join(' ')}"
end

#normalize(files_to_test) ⇒ Object



48
49
50
51
52
53
# File 'lib/autotest/rspec2.rb', line 48

def normalize(files_to_test)
  files_to_test.keys.inject({}) do |result, filename|
    result[File.expand_path(filename)] = []
    result
  end
end

#setup_rspec_project_mappingsObject



21
22
23
24
25
26
27
28
29
30
31
# File 'lib/autotest/rspec2.rb', line 21

def setup_rspec_project_mappings
  add_mapping(%r%^spec/.*_spec\.rb$%) { |filename, _|
    filename
  }
  add_mapping(%r%^lib/(.*)\.rb$%) { |_, m|
    ["spec/#{m[1]}_spec.rb"]
  }
  add_mapping(%r%^spec/(spec_helper|shared/.*)\.rb$%) {
    files_matching %r%^spec/.*_spec\.rb$%
  }
end

#suffixObject



55
56
57
# File 'lib/autotest/rspec2.rb', line 55

def suffix
  using_bundler? ? "" : defined?(:Gem) ? " -rrubygems" : ""
end

#using_bundler?Boolean

Returns:

  • (Boolean)


59
60
61
# File 'lib/autotest/rspec2.rb', line 59

def using_bundler?
  prefix =~ /bundle exec/
end