Ejemplo n.º 1
0
    def test_bug_status_summary(self):
        """Check bug status summary"""
        class MockComment:
            users_name = "my name"
            username = "******"
            date = mx.DateTime.now()
            text = "this is a comment"

        class MockBug:
            bug_id = 3
            title = "whatever"
            status = "new"
            priority = "priority1"
            resolution = "resolution1"
            category = "category1"
            keyword = "keyword1"
            reported_in = "version2"
            fixed_in = "version2"
            tested_ok_in = "version2"
            comments = [MockComment(), MockComment()]

        wfile = self.get_wfile()
        wfile.write("<test>\n")
        templates.bug_status_summary(wfile, MockBug())
        wfile.write("</test>")
        self.assert_(self.is_well_formed(wfile))
Ejemplo n.º 2
0
Archivo: locations.py Proyecto: p/midge
 def _show_status_and_comments_and_form(self, wfile, bug):
     templates.bug_status_summary(wfile, bug)
     templates.vspace(wfile)
     templates.show_comments(wfile, bug)
     templates.hrule(wfile)
     templates.edit_bug_form(
         wfile, self.path, bug,
         self.application.statuses,
         self.application.priorities,
         self.application.resolutions,
         self.application.categories,
         self.application.keywords,
         self.application.versions)