[Source]
# File lib/spec.rb, line 26 26: def exit?; \ 27: !Object.const_defined?(:Test) || Test::Unit.run?; \ 28: end
# File lib/spec.rb, line 18 18: def run; \ 19: return true if run?; \ 20: result = rspec_options.run_examples; \ 21: @run = true; \ 22: result; \ 23: end
# File lib/spec.rb, line 14 14: def run? 15: @run || rspec_options.examples_run? 16: end
[Validate]