class Minke::Tasks::Test

Public Instance Methods

run(args = nil) click to toggle source
# File lib/minke/tasks/test.rb, line 5
def run args = nil
@logger.info "## Test application"

  run_with_block do |pre_tasks, post_tasks|
    pre_tasks.call
    
    @generator_config.build_settings.build_commands.test.each do |command|
          run_command_in_container command
    end

    post_tasks.call
  end
end