diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2010-02-18 20:22:23 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2010-02-18 20:22:23 +0000 |
| commit | 6577298076dbacbcc2d3280057b9129282ebf162 (patch) | |
| tree | bf5d370f4876e14a9e257cc56d04fb5511614a10 /python/qpid/tests/__init__.py | |
| parent | 98ed72a36159ab9084ecf49045456dd21d5a64f8 (diff) | |
| download | qpid-python-6577298076dbacbcc2d3280057b9129282ebf162.tar.gz | |
split messaging.py into multiple files and made qpid.messaging a package
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@911550 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/tests/__init__.py')
| -rw-r--r-- | python/qpid/tests/__init__.py | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/python/qpid/tests/__init__.py b/python/qpid/tests/__init__.py index 039214ca42..101a0c3759 100644 --- a/python/qpid/tests/__init__.py +++ b/python/qpid/tests/__init__.py @@ -26,7 +26,35 @@ class Test: self.config = config # API Tests -import address, framing, mimetype, messaging +import qpid.tests.framing +import qpid.tests.mimetype +import qpid.tests.messaging # Legacy Tests -import codec, queue, datatypes, connection, spec010, codec010 +import qpid.tests.codec +import qpid.tests.queue +import qpid.tests.datatypes +import qpid.tests.connection +import qpid.tests.spec010 +import qpid.tests.codec010 + +class TestTestsXXX(Test): + + def testFoo(self): + print "this test has output" + + def testBar(self): + print "this test "*8 + print "has"*10 + print "a"*75 + print "lot of"*10 + print "output"*10 + + def testQux(self): + import sys + sys.stdout.write("this test has output with no newline") + + def testQuxFail(self): + import sys + sys.stdout.write("this test has output with no newline") + fdsa |
