X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8e6cd14b7884a691a110110b0f366577437c6d9e..44c95f99098fa6c6acbfa82d4b6cbc6015eb6e39:/sdk/python/tests/test_arv_ws.py diff --git a/sdk/python/tests/test_arv_ws.py b/sdk/python/tests/test_arv_ws.py index 2a85e04e87..521c46ee34 100644 --- a/sdk/python/tests/test_arv_ws.py +++ b/sdk/python/tests/test_arv_ws.py @@ -1,6 +1,8 @@ -#!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 -import io +from __future__ import absolute_import import os import sys import tempfile @@ -8,9 +10,9 @@ import unittest import arvados.errors as arv_error import arvados.commands.ws as arv_ws -import arvados_testutil as tutil +from . import arvados_testutil as tutil -class ArvWsTestCase(unittest.TestCase): +class ArvWsTestCase(unittest.TestCase, tutil.VersionChecker): def run_ws(self, args): return arv_ws.main(args) @@ -19,10 +21,8 @@ class ArvWsTestCase(unittest.TestCase): self.run_ws(['-x=unknown']) def test_version_argument(self): - err = io.BytesIO() - out = io.BytesIO() - with tutil.redirected_streams(stdout=out, stderr=err): + with tutil.redirected_streams( + stdout=tutil.StringIO, stderr=tutil.StringIO) as (out, err): with self.assertRaises(SystemExit): self.run_ws(['--version']) - self.assertEqual(out.getvalue(), '') - self.assertRegexpMatches(err.getvalue(), "[0-9]+\.[0-9]+\.[0-9]+") + self.assertVersionOutput(out, err)