Class: TestLauncher::Frameworks::Base::Locator

Inherits:
Implementation::Locator show all
Defined in:
lib/test_launcher/frameworks/base.rb

Direct Known Subclasses

Minitest::Locator, RSpec::Locator

Instance Method Summary collapse

Methods inherited from Implementation::Locator

#_prioritized_results, #prioritized_results

Instance Method Details

#file_name_patternObject

Raises:

  • (NotImplementedError)


14
15
16
17
# File 'lib/test_launcher/frameworks/base.rb', line 14

def file_name_pattern
  # for bash to match on file names
  raise NotImplementedError
end

#file_name_regexObject

Raises:

  • (NotImplementedError)


9
10
11
12
# File 'lib/test_launcher/frameworks/base.rb', line 9

def file_name_regex
  # for ruby to match on file names
  raise NotImplementedError
end

#regex_patternObject

Raises:

  • (NotImplementedError)


19
20
21
22
# File 'lib/test_launcher/frameworks/base.rb', line 19

def regex_pattern
  # to match on examples
  raise NotImplementedError
end