class Utils::ConfigFile::Probe
directories should be included in test discovery and execution.
specifically supporting different test frameworks and defining which
This class manages the configuration options related to running tests,
A configuration class for test execution settings.
def include_dirs_argument
-
(String)
- a colon-separated string of include directory paths
def include_dirs_argument Array(include_dirs) * ':' end
def initialize(&block)
-
block
(Proc
) -- a block to be passed to the superclass initializer
def initialize(&block) super test_frameworks_allowed = [ :'test-unit', :rspec ] test_frameworks_allowed.include?(test_framework) or raise ConfigFileError, "test_framework has to be in #{test_frameworks_allowed.inspect}" end