Sha256: ebc9311a7f20d11308643d386a354c4125da7434e0e6d4e0472e7a3d27db2787
Contents?: true
Size: 605 Bytes
Versions: 19
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Mutant class Integration # Null integration that has no tests class Null < self # Available tests for integration # # @return [Enumerable<Test>] def all_tests EMPTY_ARRAY end # Run a collection of tests # # @param [Enumerable<Mutant::Test>] tests # # @return [Result::Test] def call(tests) Result::Test.new( output: '', passed: true, runtime: 0.0, tests: tests ) end end # Null end # Integration end # Mutant
Version data entries
19 entries across 19 versions & 1 rubygems