summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/cases/oetag.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core/tests/cases/oetag.py')
-rw-r--r--meta/lib/oeqa/core/tests/cases/oetag.py21
1 files changed, 19 insertions, 2 deletions
diff --git a/meta/lib/oeqa/core/tests/cases/oetag.py b/meta/lib/oeqa/core/tests/cases/oetag.py
index 4e1d080985..52f97dfda6 100644
--- a/meta/lib/oeqa/core/tests/cases/oetag.py
+++ b/meta/lib/oeqa/core/tests/cases/oetag.py
@@ -5,10 +5,9 @@
5# 5#
6 6
7from oeqa.core.case import OETestCase 7from oeqa.core.case import OETestCase
8from oeqa.core.decorator.oetag import OETestTag 8from oeqa.core.decorator import OETestTag
9 9
10class TagTest(OETestCase): 10class TagTest(OETestCase):
11
12 @OETestTag('goodTag') 11 @OETestTag('goodTag')
13 def testTagGood(self): 12 def testTagGood(self):
14 self.assertTrue(True, msg='How is this possible?') 13 self.assertTrue(True, msg='How is this possible?')
@@ -17,5 +16,23 @@ class TagTest(OETestCase):
17 def testTagOther(self): 16 def testTagOther(self):
18 self.assertTrue(True, msg='How is this possible?') 17 self.assertTrue(True, msg='How is this possible?')
19 18
19 @OETestTag('otherTag', 'multiTag')
20 def testTagOtherMulti(self):
21 self.assertTrue(True, msg='How is this possible?')
22
20 def testTagNone(self): 23 def testTagNone(self):
21 self.assertTrue(True, msg='How is this possible?') 24 self.assertTrue(True, msg='How is this possible?')
25
26@OETestTag('classTag')
27class TagClassTest(OETestCase):
28 @OETestTag('otherTag')
29 def testTagOther(self):
30 self.assertTrue(True, msg='How is this possible?')
31
32 @OETestTag('otherTag', 'multiTag')
33 def testTagOtherMulti(self):
34 self.assertTrue(True, msg='How is this possible?')
35
36 def testTagNone(self):
37 self.assertTrue(True, msg='How is this possible?')
38