mirror of
https://github.com/GNS3/gns3-server
synced 2025-01-11 08:30:57 +00:00
"/appliances" => "/appliances/templates"
This commit is contained in:
parent
dc6756d5ae
commit
8d86d959de
@ -26,7 +26,7 @@ class ApplianceHandler:
|
||||
"""API entry points for appliance management."""
|
||||
|
||||
@Route.get(
|
||||
r"/appliances",
|
||||
r"/appliances/templates",
|
||||
description="List of appliance",
|
||||
status_codes={
|
||||
200: "Appliance list returned"
|
||||
|
@ -15,14 +15,11 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import unittest
|
||||
from tests.utils import asyncio_patch
|
||||
|
||||
|
||||
def test_appliance_list(http_controller, controller):
|
||||
|
||||
response = http_controller.get("/appliances")
|
||||
response = http_controller.get("/appliances/templates")
|
||||
assert response.status == 200
|
||||
assert response.route == "/appliances"
|
||||
assert response.route == "/appliances/templates"
|
||||
|
||||
assert len(response.json) > 0
|
||||
|
Loading…
Reference in New Issue
Block a user