Class: Transpec::Syntax::Expect
- Inherits:
-
Transpec::Syntax
- Object
- Transpec::Syntax
- Transpec::Syntax::Expect
- Includes:
- Mixin::ExpectBase, Mixin::HaveMatcherOwner
- Defined in:
- lib/transpec/syntax/expect.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::ExpectBase
#block_node, #current_syntax_type, #matcher_node, #positive?, #receive_matcher, #subject_range
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::HaveMatcherOwner
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
12 13 14 |
# File 'lib/transpec/syntax/expect.rb', line 12 def self.target_method?(receiver_node, method_name) receiver_node.nil? && [:expect, :expect_any_instance_of].include?(method_name) end |
Instance Method Details
#any_instance? ⇒ Boolean
20 21 22 |
# File 'lib/transpec/syntax/expect.rb', line 20 def any_instance? method_name == :expect_any_instance_of end |
#method_name_for_instance ⇒ Object
16 17 18 |
# File 'lib/transpec/syntax/expect.rb', line 16 def method_name_for_instance :expect end |