Module: CI::Reporter

Defined in:
lib/ci/reporter/report_manager.rb,
lib/ci/reporter/rspec.rb,
lib/ci/reporter/version.rb,
lib/ci/reporter/cucumber.rb,
lib/ci/reporter/minitest.rb,
lib/ci/reporter/test_unit.rb,
lib/ci/reporter/rake/utils.rb,
lib/ci/reporter/test_suite.rb

Overview

:nodoc:

Defined Under Namespace

Modules: OutputCapture, RSpecFormatters Classes: Cucumber, CucumberFailure, Failure, FailureCore, MiniTestError, MiniTestFailure, MiniTestSkipped, RSpec, RSpec2Failure, RSpecBase, RSpecDoc, RSpecFailure, ReportManager, Runner, TestCase, TestSuite, TestUnit, TestUnitError, TestUnitFailure, TestUnitNotification, TestUnitSkipped

Constant Summary collapse

VERSION =
"1.7.3"

Class Method Summary collapse

Class Method Details

.maybe_quote_filename(fn) ⇒ Object



7
8
9
10
11
12
# File 'lib/ci/reporter/rake/utils.rb', line 7

def self.maybe_quote_filename(fn)
  if fn =~ /\s/
    fn = %{"#{fn}"}
  end
  fn
end