X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/91dc5f1d7f5ad9eb2640f6089e2d0476cbf87c8e..9d223ac56644eb23cdc39c5044f4fb12cf29b685:/apps/workbench/test/controllers/workflows_controller_test.rb diff --git a/apps/workbench/test/controllers/workflows_controller_test.rb b/apps/workbench/test/controllers/workflows_controller_test.rb index 14db731381..d73809a266 100644 --- a/apps/workbench/test/controllers/workflows_controller_test.rb +++ b/apps/workbench/test/controllers/workflows_controller_test.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class WorkflowsControllerTest < ActionController::TestCase @@ -6,4 +10,16 @@ class WorkflowsControllerTest < ActionController::TestCase assert_response :success assert_includes @response.body, 'Valid workflow with no definition yaml' end + + test "show" do + use_token 'active' + + wf = api_fixture('workflows')['workflow_with_input_specifications'] + + get :show, {id: wf['uuid']}, session_for(:active) + assert_response :success + + assert_includes @response.body, "a short label for this parameter (optional)" + assert_includes @response.body, "href=\"#Advanced\"" + end end