~ubuntu-branches/ubuntu/precise/aptdaemon/precise-updates

« back to all changes in this revision

Viewing changes to tests/test_dbus_type.py

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2011-11-18 12:03:22 UTC
  • mfrom: (1.3.15)
  • Revision ID: package-import@ubuntu.com-20111118120322-x0ffrgyrrc7ku8lm
Tags: 0.43+bzr703-0ubuntu1
* New bzr snapshot:
  - Merge the AddLicenseKey method
  - Replace the backported unittest2 framework by the native one of
    Python 2.7 and Nose to collect the tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
from collections import namedtuple
6
6
import os
7
7
import re
8
 
import unittest2
 
8
import unittest
9
9
 
10
10
import dbus
11
11
import gobject
185
185
 
186
186
 
187
187
if __name__ == "__main__":
188
 
    unittest2.main()
 
188
    unittest.main()
189
189
 
190
190
# vim: ts=4 et sts=4