summaryrefslogtreecommitdiffstats
path: root/import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py')
-rw-r--r--import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py b/import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py
deleted file mode 100644
index 17cdd90b1..000000000
--- a/import-layers/yocto-poky/meta/lib/oeqa/core/tests/cases/depends.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (C) 2016 Intel Corporation
-# Released under the MIT license (see COPYING.MIT)
-
-from oeqa.core.case import OETestCase
-from oeqa.core.decorator.depends import OETestDepends
-
-class DependsTest(OETestCase):
-
- def testDependsFirst(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsFirst'])
- def testDependsSecond(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsSecond'])
- def testDependsThird(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsSecond'])
- def testDependsFourth(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsThird', 'testDependsFourth'])
- def testDependsFifth(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsCircular3'])
- def testDependsCircular1(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsCircular1'])
- def testDependsCircular2(self):
- self.assertTrue(True, msg='How is this possible?')
-
- @OETestDepends(['testDependsCircular2'])
- def testDependsCircular3(self):
- self.assertTrue(True, msg='How is this possible?')
OpenPOWER on IntegriCloud