module Transpec::Syntax::Mixin::OwnedMatcher

Public Class Methods

new(node, expectation, runtime_data = nil, project = nil, source_rewriter = nil, report = nil) click to toggle source

rubocop:disable LineLength

Calls superclass method
# File lib/transpec/syntax/mixin/owned_matcher.rb, line 22
def initialize(node, expectation, runtime_data = nil, project = nil, source_rewriter = nil, report = nil)
  super(node, runtime_data, project, source_rewriter, report)
  @expectation = expectation
end