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

« back to all changes in this revision

Viewing changes to mago/test_suite/update_manager.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:
8
8
 
9
9
class UpdateManagerTestSuite(SingleApplicationTestSuite):
10
10
    APPLICATION_FACTORY = UpdateManager
 
11
 
 
12
    def setup(self):
 
13
        self.application.open()
 
14
 
 
15
    def teardown(self):
 
16
        self.application.close() 
 
17
 
 
18
    def cleanup(self):
 
19
        pass
 
20
 
 
21