76: def finish
77: print "---\n"
78:
79: methods.each do |key, hash|
80: print key.inspect, ":\n"
81: print " class: ", hash[:class].inspect, "\n"
82: print " method: ", hash[:method].inspect, "\n"
83: print " type: ", hash[:type], "\n"
84: print " description: ", hash[:description].inspect, "\n"
85: print " examples: ", hash[:examples], "\n"
86: print " expectations: ", hash[:expectations], "\n"
87: print " failures: ", hash[:failures], "\n"
88: print " errors: ", hash[:errors], "\n"
89: print " exceptions:\n"
90: hash[:exceptions].each { |exc| print " - ", exc.inspect, "\n" }
91: end
92: end