blob: 32016f8f5b4363750c5c38de54f8492ba7d9b5f5 [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import doctest
import unittest
import statusinfo.statusinfo
def load_tests(
_loader: unittest.TestLoader,
tests: unittest.TestSuite,
_ignore: unittest.TestLoader,
) -> unittest.TestSuite:
tests.addTests(doctest.DocTestSuite(statusinfo.statusinfo))
return tests