~ubuntu-branches/ubuntu/natty/mago/natty

« back to all changes in this revision

Viewing changes to computer_janitor_gtk/computer_janitor_gtk_basics.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2011-02-08 13:32:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110208133213-m1og7ey0m990chg6
Tags: 0.3+bzr20-0ubuntu1
* debian/rules:
  - updated to debhelper 7
  - use dh_python2 instead of python-central
* debian/pycompat:
  - removed, no longer needed
* debian/control:
  - dropped cdbs and python-central dependencies
* bzr snapshot of the current trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
import os
3
 
from time import time, gmtime, strftime
4
 
 
5
 
from mago.test_suite.computer_janitor_gtk import Computer_janitor_gtkTestSuite 
6
 
 
7
 
class Computer_janitor_gtkBasics(Computer_janitor_gtkTestSuite):
8
 
    def testAboutdialog(self, arg1=None):
9
 
        self.application.runAboutdialog()
10
 
 
11
 
if __name__ == "__main__":
12
 
    computer_janitor_gtk_test =  Computer_janitor_gtkBasics()
13
 
    computer_janitor_gtk_test.run()