20690: Remove workbench1 and testing/packaging references.
[arvados.git] / 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
deleted file mode 100644 (file)
index 0877e59..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-require 'test_helper'
-
-class WorkflowsControllerTest < ActionController::TestCase
-  test "index" do
-    get :index, params: {}, session: session_for(:active)
-    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, params: {id: wf['uuid']}, session: 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