~ubuntu-branches/ubuntu/saucy/mago/saucy

« back to all changes in this revision

Viewing changes to mago/test_suite/gnome_nettool.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
 
"""
2
 
This module contains the definition of the test suite for Gnome_nettool testing.
3
 
"""
4
 
import ldtp, ooldtp
5
 
from .main import SingleApplicationTestSuite
6
 
from ..application.gnome_nettool import Application, Gnome_nettool
7
 
 
8
 
class Gnome_nettoolTestSuite(SingleApplicationTestSuite):
9
 
    """
10
 
    Default test suite for Gnome_nettool
11
 
    """
12
 
    APPLICATION_FACTORY = Gnome_nettool
13
 
    def setup(self):
14
 
        self.application.open()
15
 
 
16
 
    def teardown(self):
17
 
        self.application.close()
18
 
 
19
 
    def cleanup(self):
20
 
        self.application.close()