Class: TestLauncher::CLI::MultiFrameworkQuery
- Inherits:
-
Struct
- Object
- Struct
- TestLauncher::CLI::MultiFrameworkQuery
- Defined in:
- lib/test_launcher/cli.rb
Instance Attribute Summary collapse
-
#cli_options ⇒ Object
Returns the value of attribute cli_options.
Instance Method Summary collapse
Instance Attribute Details
#cli_options ⇒ Object
Returns the value of attribute cli_options
9 10 11 |
# File 'lib/test_launcher/cli.rb', line 9 def @cli_options end |
Instance Method Details
#command ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/test_launcher/cli.rb', line 10 def command command = nil command_finders.each do |command_finder| command = command_finder.generic_search break if command end command end |
#command_finders ⇒ Object
19 20 21 22 23 |
# File 'lib/test_launcher/cli.rb', line 19 def command_finders .frameworks.map do |framework| Queries::CommandFinder.new(request_for(framework)) end end |
#request_for(framework) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/test_launcher/cli.rb', line 25 def request_for(framework) Request.new( framework: framework, search_string: .search_string, rerun: .rerun, run_all: .run_all, disable_spring: .disable_spring, force_spring: .force_spring, example_name: .example_name, shell: .shell, searcher: .searcher, ) end |