Class: Transpec::Syntax::Example

Inherits:
Syntax
  • Object
show all
Includes:
RSpecDSL, Mixin::ContextSensitive, Mixin::Metadata
Defined in:
lib/transpec/syntax/example.rb

Constant Summary

Constants included from RSpecDSL

RSpecDSL::EXAMPLE_GROUP_METHODS, RSpecDSL::EXAMPLE_METHODS, RSpecDSL::HELPER_METHODS, RSpecDSL::HOOK_METHODS

Instance Method Summary collapse

Methods included from Mixin::ContextSensitive

#conversion_target?

Methods included from Mixin::Send

#arg_node, #arg_nodes, #arg_range, #args_range, #method_name, #parentheses_range, #range_after_arg, #range_in_between_receiver_and_selector, #range_in_between_selector_and_arg, #receiver_node, #receiver_range, #selector_range

Methods included from Mixin::Send::TargetDetection

#conversion_target?

Methods included from Mixin::Metadata

#metadata_key_nodes, #metadata_nodes

Instance Method Details

#convert_pending_to_skip!Object



21
22
23
24
# File 'lib/transpec/syntax/example.rb', line 21

def convert_pending_to_skip!
  convert_pending_selector_to_skip!
  
end

#dynamic_analysis_target?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/transpec/syntax/example.rb', line 13

def dynamic_analysis_target?
  super && receiver_node.nil? && EXAMPLE_METHODS.include?(method_name)
end

#should_be_in_example_group_context?Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/transpec/syntax/example.rb', line 17

def should_be_in_example_group_context?
  true
end