From 6c4f81516c6ad119d39c4952f3ab274f3d3f2efa Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Fri, 17 Apr 2015 13:37:44 -0400 Subject: Re-organize functional tests The tests should be further divded by project version, similar to the structure of the unit tests. Change-Id: Ied3a4204983cdd253c5602a60968c066038d88f2 --- functional/tests/examples/__init__.py | 0 functional/tests/examples/test_examples.py | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 functional/tests/examples/__init__.py create mode 100644 functional/tests/examples/test_examples.py (limited to 'functional/tests/examples') diff --git a/functional/tests/examples/__init__.py b/functional/tests/examples/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/functional/tests/examples/test_examples.py b/functional/tests/examples/test_examples.py new file mode 100644 index 00000000..6e0e5867 --- /dev/null +++ b/functional/tests/examples/test_examples.py @@ -0,0 +1,28 @@ +# Licensed 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 functional.common import test + + +class ExampleTests(test.TestCase): + """Functional tests for running examples.""" + + def test_common(self): + # NOTE(stevemar): If an examples has a non-zero return + # code, then execute will raise an error by default. + test.execute('python', test.EXAMPLE_DIR + '/common.py --debug') + + def test_object_api(self): + test.execute('python', test.EXAMPLE_DIR + '/object_api.py --debug') + + def test_osc_lib(self): + test.execute('python', test.EXAMPLE_DIR + '/osc-lib.py --debug') -- cgit v1.2.1