xref: /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/tests/cases/loader/valid/another.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# Copyright (C) 2016 Intel Corporation
3#
4# SPDX-License-Identifier: MIT
5#
6
7from oeqa.core.case import OETestCase
8
9class AnotherTest(OETestCase):
10
11    def testAnother(self):
12        self.assertTrue(True, msg='How is this possible?')
13