X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5dd1249f3ec74643957202977f92e42be78f65d8..5a2ee4443769b236001117a502bfef94bad54d16:/sdk/cli/test/test_arv-tag.rb?ds=sidebyside diff --git a/sdk/cli/test/test_arv-tag.rb b/sdk/cli/test/test_arv-tag.rb index 0e6aa2b156..16542ba16b 100644 --- a/sdk/cli/test/test_arv-tag.rb +++ b/sdk/cli/test/test_arv-tag.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + require 'minitest/autorun' require 'digest/md5' require 'json' @@ -9,6 +13,8 @@ end class TestArvTag < Minitest::Test def test_no_args + skip "Waiting until #4534 is implemented" + # arv-tag exits with failure if run with no args out, err = capture_subprocess_io do assert_equal false, arv_tag @@ -19,6 +25,8 @@ class TestArvTag < Minitest::Test # Test adding and removing a single tag on a single object. def test_single_tag_single_obj + skip "TBD" + # Add a single tag. tag_uuid, err = capture_subprocess_io do assert arv_tag '--short', 'add', 'test_tag1', '--object', 'uuid1' @@ -53,6 +61,8 @@ class TestArvTag < Minitest::Test # Test adding and removing a single tag with multiple objects. def test_single_tag_multi_objects + skip "TBD" + out, err = capture_subprocess_io do assert arv_tag('add', 'test_tag1', '--object', 'uuid1',