def test_show_log_blank_branch(self): tree1 = self.make_branch_and_tree('tree1') win = LogWindow(['tree1'], None) self.addCleanup(win.close) win.show() QtCore.QCoreApplication.processEvents() QtCore.QCoreApplication.processEvents()
def test_show_log_simple_commit(self): wt = self.make_branch_and_tree('.') wt.commit('empty commit') self.build_tree(['hello']) wt.add('hello') wt.commit('add one file', committer=u'\u013d\xf3r\xe9m \xcdp\u0161\xfam ' u'<*****@*****.**>') win = LogWindow(['.'], None) self.addCleanup(win.close) win.show() QtCore.QCoreApplication.processEvents() QtCore.QCoreApplication.processEvents()