20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / test / unit / repository_test.rb
diff --git a/apps/workbench/test/unit/repository_test.rb b/apps/workbench/test/unit/repository_test.rb
deleted file mode 100644 (file)
index d62d02b..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-require 'test_helper'
-
-class RepositoryTest < ActiveSupport::TestCase
-  [
-    ['admin', true],
-    ['active', false],
-  ].each do |user, can_edit|
-    test "#{user} can edit attributes #{can_edit}" do
-      use_token user
-      attrs = Repository.new.editable_attributes
-      if can_edit
-        refute_empty attrs
-      else
-        assert_empty attrs
-      end
-    end
-  end
-end