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

« back to all changes in this revision

Viewing changes to gbrainy/gbrainy_basics.py

  • Committer: Bazaar Package Importer
  • Author(s): Ara Pulido
  • Date: 2010-12-03 16:08:32 UTC
  • Revision ID: james.westby@ubuntu.com-20101203160832-97pz2nxwmo54iwfk
Tags: 0.3-0ubuntu3
* Updated from trunk
 + Added new applications to our tests base
 + Fixes LP: #682845 

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.gbrainy import GbrainyTestSuite 
 
6
 
 
7
class GbrainyBasics(GbrainyTestSuite):
 
8
    def testAboutdialog(self, arg1=None):
 
9
        self.application.runAboutdialog()
 
10
 
 
11
if __name__ == "__main__":
 
12
    gbrainy_test =  GbrainyBasics()
 
13
    gbrainy_test.run()