# File lib/puppet/simple_graph.rb, line 263 263: def edge(source, target) 264: @edges.each_with_index { |test_edge, index| return test_edge if test_edge.source == source and test_edge.target == target } 265: end