Class: MediaWikiVagrant::RunTests
- Defined in:
- lib/mediawiki-vagrant/run-tests.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.synopsis ⇒ Object
3 4 5 |
# File 'lib/mediawiki-vagrant/run-tests.rb', line 3 def self.synopsis "runs MediaWiki's test suite" end |
Instance Method Details
#execute ⇒ Object
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/mediawiki-vagrant/run-tests.rb', line 7 def execute if ['-h', '--help'].include? @argv.first @env.ui.info 'Usage: vagrant run-tests [tests] [-h]' return 0 end opts = { extra_args: @argv.unshift('run-mediawiki-tests') } with_target_vms(nil, single_target: true) do |vm| vm.action :ssh, ssh_opts: opts end end |