Class: Transpec::Syntax::BeClose
- Inherits:
-
Syntax
- Object
- Syntax
- Transpec::Syntax::BeClose
show all
- Includes:
- Mixin::Send
- Defined in:
- lib/transpec/syntax/be_close.rb
Instance Method Summary
collapse
#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
#conversion_target?
Instance Method Details
#convert_to_be_within! ⇒ Object
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/transpec/syntax/be_close.rb', line 15
def convert_to_be_within!
_receiver_node, _method_name, expected_node, delta_node = *node
be_within_source = 'be_within('
be_within_source << delta_node.loc.expression.source
be_within_source << ').of('
be_within_source << expected_node.loc.expression.source
be_within_source << ')'
replace(expression_range, be_within_source)
add_record
end
|
#dynamic_analysis_target? ⇒ Boolean
11
12
13
|
# File 'lib/transpec/syntax/be_close.rb', line 11
def dynamic_analysis_target?
super && receiver_node.nil? && method_name == :be_close
end
|