Sha256: 378c3f72d870a87eb23ab8afd5adfb0b224c89f11e1d22ebbb3f0031b28e2c6e

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

require 'helper'

class TestCommandGuesser < Minitest::Test
  def self.should_guess_command_name(expectation, *argv)
    argv.each do |args|
      should "return '#{expectation}' for '#{args}'" do
        SimpleCov::CommandGuesser.original_run_command = args
        assert_equal expectation, SimpleCov::CommandGuesser.guess
      end
    end
  end

  should_guess_command_name "Unit Tests", '/some/path/test/units/foo_bar_test.rb', 'test/units/foo.rb', 'test/foo.rb', 'test/{models,helpers,unit}/**/*_test.rb'
  should_guess_command_name "Functional Tests", '/some/path/test/functional/foo_bar_controller_test.rb', 'test/{controllers,mailers,functional}/**/*_test.rb'
  should_guess_command_name "Integration Tests", '/some/path/test/integration/foo_bar_controller_test.rb', 'test/integration/**/*_test.rb'
  should_guess_command_name "Cucumber Features", 'features', 'cucumber', 'cucumber features'
  should_guess_command_name "RSpec", '/some/path/spec/foo.rb'
  should_guess_command_name "Unit Tests", 'some_arbitrary_command with arguments' # Because Test::Unit const is defined!
end if SimpleCov.usable?

Version data entries

9 entries across 8 versions & 2 rubygems

Version Path
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.7 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.6 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.5 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.4 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.2 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
tdiary-5.0.1 vendor/bundle/gems/simplecov-0.9.2/test/test_command_guesser.rb
simplecov-0.9.2 test/test_command_guesser.rb