Home | History | Annotate | Download | only in PrettyPatch

Lines Matching defs:Info

10     class Info
47 def check_one_patch(id, info)
50 description += " (" + info[Info::TITLE] + ")" unless info[Info::TITLE].nil?
57 assert_equal(info[Info::FILE], $last_prettify_file_count, "Wrong number of files changed in " + description)
58 assert_equal(info[Info::ADD], $last_prettify_part_count["add"], "Wrong number of 'add' parts in " + description)
59 assert_equal(info[Info::REMOVE], $last_prettify_part_count["remove"], "Wrong number of 'remove' parts in " + description)
60 assert_equal(info[Info::SHARED], $last_prettify_part_count["shared"], "Wrong number of 'shared' parts in " + description)
67 PATCHES.each { |id, info| check_one_patch(id, info) }