Module: Mutant::Result Private

Included in:
Coverage, CoverageCriteria, Env, Mutation, Subject, TestEnv
Defined in:
lib/mutant/result.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Namespace and mixin module for results

Defined Under Namespace

Modules: ClassMethods, CoverageMetric Classes: Coverage, CoverageCriteria, Env, Mutation, MutationIndex, Subject, Test, TestEnv

Class Method Summary collapse

Class Method Details

.included(host) ⇒ undefined

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Hook called when module gets included

Parameters:

  • host (Class, Module)

Returns:

  • (undefined)


58
59
60
61
62
63
# File 'lib/mutant/result.rb', line 58

def self.included(host)
  host.class_eval do
    include Adamantium
    extend ClassMethods
  end
end