Class: ParallelTests::RSpec::Runner

Inherits:
Test::Runner show all
Defined in:
lib/parallel_tests/rspec/runner.rb

Constant Summary collapse

NAME =
'RSpec'

Class Method Summary collapse

Methods inherited from Test::Runner

execute_command, execute_command_and_capture_output, find_results, line_is_result?, name, summarize_results, test_env_number, tests_in_groups

Class Method Details

.determine_executableObject



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/parallel_tests/rspec/runner.rb', line 16

def self.determine_executable
  cmd = if File.file?("script/spec")
    "script/spec"
  elsif ParallelTests.bundler_enabled?
    cmd = (run("bundle show rspec-core") =~ %r{Could not find gem.*} ? "spec" : "rspec")
    "bundle exec #{cmd}"
  else
    %w[spec rspec].detect{|cmd| system "#{cmd} --version > /dev/null 2>&1" }
  end
  cmd or raise("Can't find executables rspec or spec")
end

.run_tests(test_files, process_number, num_processes, options) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/parallel_tests/rspec/runner.rb', line 8

def self.run_tests(test_files, process_number, num_processes, options)
  exe = executable # expensive, so we cache
  version = (exe =~ /\brspec\b/ ? 2 : 1)
  cmd = [exe, options[:test_options], (rspec_2_color if version == 2), spec_opts, *test_files].compact.join(" ")
  options = options.merge(:env => rspec_1_color) if version == 1
  execute_command(cmd, process_number, num_processes, options)
end

.runtime_logObject



28
29
30
# File 'lib/parallel_tests/rspec/runner.rb', line 28

def self.runtime_log
  'tmp/parallel_runtime_rspec.log'
end

.test_file_nameObject



32
33
34
# File 'lib/parallel_tests/rspec/runner.rb', line 32

def self.test_file_name
  "spec"
end

.test_suffixObject



36
37
38
# File 'lib/parallel_tests/rspec/runner.rb', line 36

def self.test_suffix
  "_spec.rb"
end