20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / test / integration / integration_test_utils.rb
diff --git a/apps/workbench/test/integration/integration_test_utils.rb b/apps/workbench/test/integration/integration_test_utils.rb
deleted file mode 100644 (file)
index 336843c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) The Arvados Authors. All rights reserved.
-#
-# SPDX-License-Identifier: AGPL-3.0
-
-# This file is used to define methods reusable by two or more integration tests
-#
-
-# check_checkboxes_state asserts that the page holds at least one
-# checkbox matching 'selector', and that all matching checkboxes
-# are in state 'checkbox_status' (i.e. checked if true, unchecked otherwise)
-def assert_checkboxes_state(selector, checkbox_status, msg=nil)
-  assert page.has_selector?(selector)
-  page.all(selector).each do |checkbox|
-    assert(checkbox.checked? == checkbox_status, msg)
-  end
-end