
- refactoring with relative imports to support simple renaming - new tox job to build and simply test code inside docker container
52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
# All Rights Reserved.
|
|
#
|
|
# 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 ..common import routes as routes_suite
|
|
from ..functional import base
|
|
|
|
|
|
class TestAppRoutes(base.LaosFunctionalTestsBase,
|
|
routes_suite.AppRoutesTestSuite):
|
|
|
|
def test_list_routes_from_unknown_app(self):
|
|
super(TestAppRoutes, self).list_routes_from_unknown_app()
|
|
|
|
def test_list_routes_from_existing_app(self):
|
|
super(TestAppRoutes, self).list_routes_from_existing_app()
|
|
|
|
def test_show_unknown_route_from_existing_app(self):
|
|
super(
|
|
TestAppRoutes, self
|
|
).show_unknown_route_from_existing_app()
|
|
|
|
def test_delete_unknown_route_from_existing_app(self):
|
|
super(
|
|
TestAppRoutes, self
|
|
).delete_unknown_route_from_existing_app()
|
|
|
|
def test_create_and_delete_route(self):
|
|
super(TestAppRoutes, self).create_and_delete_route()
|
|
|
|
def test_double_create_route(self):
|
|
super(TestAppRoutes, self).double_create_route()
|
|
|
|
def test_update_route(self):
|
|
super(TestAppRoutes, self).update_route()
|
|
|
|
def test_private_execution(self):
|
|
super(TestAppRoutes, self).execute_private()
|
|
|
|
def test_public_execution(self):
|
|
super(TestAppRoutes, self).execute_private()
|