diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2015-04-17 13:37:44 -0400 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-04-17 13:37:44 -0400 |
| commit | 6c4f81516c6ad119d39c4952f3ab274f3d3f2efa (patch) | |
| tree | 2be9f3f7859f8eb260c9fedd12ab6410561878f1 /functional/tests/examples | |
| parent | 6ce930e846c71f99b6cae8508681e7fb0d1eee89 (diff) | |
| download | python-openstackclient-6c4f81516c6ad119d39c4952f3ab274f3d3f2efa.tar.gz | |
Re-organize functional tests
The tests should be further divded by project version, similar to
the structure of the unit tests.
Change-Id: Ied3a4204983cdd253c5602a60968c066038d88f2
Diffstat (limited to 'functional/tests/examples')
| -rw-r--r-- | functional/tests/examples/__init__.py | 0 | ||||
| -rw-r--r-- | functional/tests/examples/test_examples.py | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/functional/tests/examples/__init__.py b/functional/tests/examples/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/functional/tests/examples/__init__.py 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') |
