Class: Mutant::Meta::Example::DSL Private

Inherits:
Object
  • Object
show all
Includes:
AST::Sexp
Defined in:
lib/mutant/meta/example/dsl.rb

Overview

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

Example DSL

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file, type) ⇒ 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.

Initialize object



22
23
24
25
26
27
# File 'lib/mutant/meta/example/dsl.rb', line 22

def initialize(file, type)
  @file     = file
  @type     = type
  @node     = nil
  @expected = []
end

Class Method Details

.call(file, type, block) ⇒ Example

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.

Run DSL on block

Returns:



11
12
13
14
15
# File 'lib/mutant/meta/example/dsl.rb', line 11

def self.call(file, type, block)
  instance = new(file, type)
  instance.instance_eval(&block)
  instance.example
end

Instance Method Details

#exampleExample

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.

Example captured by DSL

Returns:

Raises:

  • (RuntimeError)

    in case example cannot be build



35
36
37
38
39
40
41
42
43
# File 'lib/mutant/meta/example/dsl.rb', line 35

def example
  fail 'source not defined' unless @node
  Example.new(
    file:      @file,
    node:      @node,
    node_type: @type,
    expected:  @expected
  )
end