Class: Transpec::Syntax::Double
- Inherits:
-
Transpec::Syntax
- Object
- Transpec::Syntax
- Transpec::Syntax::Double
- Includes:
- Mixin::Send
- Defined in:
- lib/transpec/syntax/double.rb
Instance Attribute Summary
Attributes inherited from Transpec::Syntax
#node, #report, #runtime_data, #source_rewriter
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Mixin::Send
#arg_node, #arg_nodes, #arg_range, #args_range, included, #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 inherited from Transpec::Syntax
conversion_target_node?, #expression_range, #initialize, #parent_node, snake_case_name, standalone?, #static_context_inspector, target_node?
Methods included from Collection
#all_syntaxes, #inherited, #require_all, #standalone_syntaxes
Methods included from DynamicAnalysis
#register_request_for_dynamic_analysis
Constructor Details
This class inherits a constructor from Transpec::Syntax
Class Method Details
.target_method?(receiver_node, method_name) ⇒ Boolean
11 12 13 |
# File 'lib/transpec/syntax/double.rb', line 11 def self.target_method?(receiver_node, method_name) receiver_node.nil? && [:double, :mock, :stub].include?(method_name) end |
Instance Method Details
#convert_to_double! ⇒ Object
15 16 17 18 19 |
# File 'lib/transpec/syntax/double.rb', line 15 def convert_to_double! return if method_name == :double replace(selector_range, 'double') register_record end |