Method: CodeNode::SpecHelpers::DotFile#has_edge?

Defined in:
lib/code_node/spec_helpers/dot_file.rb

#has_edge?(path1, path2) ⇒ Boolean

Returns:



57
58
59
# File 'lib/code_node/spec_helpers/dot_file.rb', line 57

def has_edge?(path1, path2)
  has_containment?(path1, path2) || has_inheritance?(path1, path2) || has_inclusion?(path1, path2) || has_extension?(path1, path2)
end