summaryrefslogtreecommitdiff
path: root/python/tests_0-10_preview/execution.py
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2008-05-01 13:10:58 +0000
committerGordon Sim <gsim@apache.org>2008-05-01 13:10:58 +0000
commit235bc657f08567796787ba98dc1ac9434c33e61b (patch)
tree1763a0bd55c5788c08c0cc9be6ff50b7501e5e97 /python/tests_0-10_preview/execution.py
parent7ca9c6bd32cca57d3c1dab3faa09c9dd9fbe3c51 (diff)
downloadqpid-python-235bc657f08567796787ba98dc1ac9434c33e61b.tar.gz
Remove preview tests (no longer required)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652506 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/tests_0-10_preview/execution.py')
-rw-r--r--python/tests_0-10_preview/execution.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/python/tests_0-10_preview/execution.py b/python/tests_0-10_preview/execution.py
deleted file mode 100644
index 3ff6d8ea65..0000000000
--- a/python/tests_0-10_preview/execution.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# 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.
-#
-
-from qpid.content import Content
-from qpid.testlib import testrunner, TestBase
-
-class ExecutionTests (TestBase):
- def test_flush(self):
- channel = self.channel
- for i in [1, 2, 3]:
- channel.message_transfer(
- content=Content(properties={'routing_key':str(i)}))
- assert(channel.completion.wait(channel.completion.command_id, timeout=1))