~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/arch/tests/test_interfaces.py

  • Committer: Robert Collins
  • Date: 2005-10-31 18:29:12 UTC
  • mfrom: (1102.1.126)
  • mto: (1102.1.138) (63.1.155)
  • mto: This revision was merged to the branch mainline in revision 2836.
  • Revision ID: robertc@robertcollins.net-20051031182912-5b96cbfc568d7a46
Merge ddaa and my branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env python
2
 
 
3
 
# arch-tag: d7be3bf8-9f05-401c-9ffc-06f4dd19af48
4
 
# Author: David Allouche <david.allouche@canonical.com>
5
 
# Copyright (C) 2004 Canonical Software
6
 
 
7
 
"""Test suite for Canonical arch modules."""
8
 
 
9
 
import unittest
10
 
import sys
11
 
 
12
 
class TestImports(unittest.TestCase):
13
 
    def testBroker(self):
14
 
        from canonical.arch import broker
15
 
 
16
 
 
17
 
import framework
18
 
framework.register(__name__)