class LearnLab::Test::Strategies::None
Null strategy object used when no test suite is detected.
Public Instance Methods
parser()
click to toggle source
# File lib/learn_lab/test/strategies/none.rb, line 16 def parser @parser ||= LearnLab::Test::Parsers::Null.new end
run()
click to toggle source
# File lib/learn_lab/test/strategies/none.rb, line 9 def run out.puts <<~MSG This directory doesn't appear to have any specs in it, so there’s no test to run. MSG end