X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e61df48303291900581ef4a64dcf97864598c5f4..e67d0f5d43c56f78694ea4a5f93acec5c93cd0fb:/sdk/python/tests/test_keep_locator.py diff --git a/sdk/python/tests/test_keep_locator.py b/sdk/python/tests/test_keep_locator.py index 2a90316e4c..e47d64d337 100644 --- a/sdk/python/tests/test_keep_locator.py +++ b/sdk/python/tests/test_keep_locator.py @@ -1,5 +1,6 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 from builtins import next from builtins import zip @@ -66,6 +67,11 @@ class ArvadosKeepLocatorTest(unittest.TestCase): locator = '+'.join((base,) + loc_hints) self.assertEqual(locator, str(KeepLocator(locator))) + def test_str_type(self): + base = next(self.base_locators(1)) + locator = KeepLocator(base) + self.assertEqual(type(''), type(locator.__str__())) + def test_expiry_passed(self): base = next(self.base_locators(1)) signature = next(self.signatures(1))