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