X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/feb463839301b0b596089e48a981660365d2c4a7..873fcf181c037cc1e42419bfeaf5bb70c9d9e239:/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..4e67db2184 100644 --- a/sdk/python/tests/test_arv_ws.py +++ b/sdk/python/tests/test_arv_ws.py @@ -1,6 +1,7 @@ -#!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 -import io import os import sys import tempfile @@ -8,9 +9,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 +20,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)