~mago-contributors/mago/mago-1.0

« back to all changes in this revision

Viewing changes to mago/test_suite/gnome_system_log.py

  • Committer: Jean-Baptiste Lallement
  • Date: 2010-12-08 16:08:36 UTC
  • mfrom: (150.4.1 gnome-system-log)
  • Revision ID: jean-baptiste.lallement@ubuntu.com-20101208160836-sxryro77ix1h1sno
* Adding in 4 tests for gnome-system-log. Thanks to Pedro Villavicencio
* Fix yelp test case, due to the change of the title of the window

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
This module contains the definition of the test suite for Gnome_system_lo testing.
 
3
"""
 
4
import ldtp, ooldtp
 
5
from .main import SingleApplicationTestSuite
 
6
from ..application.gnome_system_log import Application, Gnome_system_log
 
7
 
 
8
class Gnome_system_logTestSuite(SingleApplicationTestSuite):
 
9
    """
 
10
    Default test suite for Gnome_system_lo
 
11
    """
 
12
    APPLICATION_FACTORY = Gnome_system_log
 
13
    def setup(self):
 
14
        self.application.open()
 
15
 
 
16
    def teardown(self):
 
17
        self.application.close()
 
18
 
 
19
    def cleanup(self):
 
20
        pass