Module: Turn

Defined in:
lib/turn.rb,
lib/turn/command.rb,
lib/turn/colorize.rb,
lib/turn/reporter.rb,
lib/turn/controller.rb,
lib/turn/components/case.rb,
lib/turn/components/suite.rb,
lib/turn/components/method.rb,
lib/turn/runners/isorunner.rb,
lib/turn/runners/minirunner.rb,
lib/turn/runners/solorunner.rb,
lib/turn/runners/crossrunner.rb,
lib/turn/reporters/cue_reporter.rb,
lib/turn/reporters/dot_reporter.rb,
lib/turn/reporters/pretty_reporter.rb,
lib/turn/reporters/marshal_reporter.rb,
lib/turn/reporters/outline_reporter.rb,
lib/turn/reporters/progress_reporter.rb,
lib/turn/runners/testrunner.rb

Defined Under Namespace

Modules: Colorize Classes: Command, Controller, CrossRunner, CueReporter, DotReporter, IsoRunner, MarshalReporter, MiniRunner, OutlineReporter, PrettyReporter, ProgressReporter, Reporter, SoloRunner, TestCase, TestMethod, TestRunner, TestSuite

Class Method Summary collapse

Class Method Details

.minitest?Boolean

Returns true if the ruby version supports minitest. Otherwise, false is returned.

Returns:

  • (Boolean)


4
5
6
# File 'lib/turn.rb', line 4

def self.minitest?
  RUBY_VERSION >= '1.9'
end