20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / test / controllers / containers_controller_test.rb
diff --git a/apps/workbench/test/controllers/containers_controller_test.rb b/apps/workbench/test/controllers/containers_controller_test.rb
deleted file mode 100644 (file)
index ff7584e..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-require 'test_helper'
-
-class ContainersControllerTest < ActionController::TestCase
-  test "visit container log" do
-    use_token 'active'
-
-    container = api_fixture('containers')['completed']
-
-    get :show,
-        params: {id: container['uuid'], tab_pane: 'Log'},
-        session: session_for(:active)
-    assert_response :success
-
-    assert_select "a", {:href=>"/collections/#{container['log']}", :text=>"Download the log"}
-    assert_select "a", {:href=>"#{container['log']}/baz"}
-  end
-end