summaryrefslogtreecommitdiff
path: root/python/qpid/tests/__init__.py
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2009-06-02 14:24:57 +0000
committerRafael H. Schloming <rhs@apache.org>2009-06-02 14:24:57 +0000
commit7d4082b071338ab22293c633488b33fec120e604 (patch)
treede2783e03b5ecfd0a7a3d6ed56aa4127fabf9b9c /python/qpid/tests/__init__.py
parent2c65d1b1024b035d46fcfa9c67c84d54f0d68cc7 (diff)
downloadqpid-python-7d4082b071338ab22293c633488b33fec120e604.tar.gz
first commit of new messaging API and test harness
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@781044 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/tests/__init__.py')
-rw-r--r--python/qpid/tests/__init__.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/python/qpid/tests/__init__.py b/python/qpid/tests/__init__.py
new file mode 100644
index 0000000000..465e31ca3a
--- /dev/null
+++ b/python/qpid/tests/__init__.py
@@ -0,0 +1,28 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+class Test:
+
+ def __init__(self, name):
+ self.name = name
+
+ def configure(self, config):
+ self.config = config
+
+import messaging