~mandel/ubuntuone-client/sdtool_start_method

« back to all changes in this revision

Viewing changes to tests/platform/linux/test_dbus.py

  • Committer: Manuel de la Pena
  • Date: 2011-06-30 14:21:10 UTC
  • mfrom: (1064.1.1 sdtool_start_method)
  • Revision ID: mandel@themacaque.com-20110630142110-062xprll3eiv7i70
Merged with changes on linux.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3982
3982
def test_suite():
3983
3983
    """Collect these tests only on linux."""
3984
3984
    import sys
3985
 
    if sys.platform == 'linux2':
 
3985
    if sys.platform.startswith('linux'):
3986
3986
        tests = unittest.TestLoader().loadTestsFromName(__name__)
3987
3987
    else:
3988
3988
        tests = []