blob: 59b1afab7d18063ead94ae87e9b184d2f1ffd209 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001#from oeqa.selftest.base import oeSelfTest
2from oeqa.selftest.case import OESelftestTestCase
3#from oeqa.utils.decorators import testcase
4
5
6class ImportedTests(OESelftestTestCase):
7
8 def test_unconditional_pass(self):
9 """
10 Summary: Doesn't check anything, used to check import test from other layers.
11 Expected: 1. Pass unconditionally
12 Product: oe-core
13 Author: Mariano Lopez <mariano.lopez@intel.com
14 """
15
16 self.assertEqual(True, True, msg = "Impossible to fail this test")