Sha256: 22ea94da3f1bc779451cbf05a4ea9346c285ca7611f0df328fb5c5da174d5582

Contents?: true

Size: 576 Bytes

Versions: 3

Compression:

Stored size: 576 Bytes

Contents

require 'shellwords'
require 'snap_ci/parallel_tests/partition/cli_helper'

module SnapCI
  module ParallelTests
    module Partition
      class Runner

        def execute(test_files, options)
          $stdout.puts(test_files.collect {|f| f.dump }.join(' '))
        end

        def report_test_partitioning?
          false
        end

        def cli_helper
          CLIHelper
        end

        def test_suffix
          //
        end

        def test_file_name
          'file'
        end

      end #Runner

    end #Partition
  end #ParallelTests
end #SnapCI

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
snap_ci-parallel_tests-0.1.0 lib/snap_ci/parallel_tests/partition/runner.rb
snap_ci-parallel_tests-0.0.3 lib/snap_ci/parallel_tests/partition/runner.rb
snap_ci-parallel_tests-0.0.2 lib/snap_ci/parallel_tests/partition/runner.rb