~launchpad-pqm/pygpgme/devel

« back to all changes in this revision

Viewing changes to gpgme/tests/__init__.py

  • Committer: James Henstridge
  • Date: 2006-01-19 10:16:32 UTC
  • Revision ID: james.henstridge@canonical.com-20060119101632-7b8d49f01fbaeaf9
Add some tests to verify that the test keys can be loaded correctly

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
def test_suite():
4
4
    import gpgme.tests.test_context
 
5
    import gpgme.tests.test_keys
5
6
    suite = unittest.TestSuite()
6
7
    suite.addTest(gpgme.tests.test_context.test_suite())
 
8
    suite.addTest(gpgme.tests.test_keys.test_suite())
7
9
    return suite