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.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/tests/cases/oetag.py b/meta/lib/oeqa/core/tests/cases/oetag.py
new file mode 100644
index 0000000000..0cae02e75c
--- /dev/null
+++ b/meta/lib/oeqa/core/tests/cases/oetag.py
@@ -0,0 +1,18 @@
1# Copyright (C) 2016 Intel Corporation
2# Released under the MIT license (see COPYING.MIT)
3
4from oeqa.core.case import OETestCase
5from oeqa.core.decorator.oetag import OETestTag
6
7class TagTest(OETestCase):
8
9 @OETestTag('goodTag')
10 def testTagGood(self):
11 self.assertTrue(True, msg='How is this possible?')
12
13 @OETestTag('otherTag')
14 def testTagOther(self):
15 self.assertTrue(True, msg='How is this possible?')
16
17 def testTagNone(self):
18 self.assertTrue(True, msg='How is this possible?')