]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
Vendor import of lldb release_39 branch r276489:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / issue_verification / TestInvalidDecorator.py.park
1 from __future__ import print_function
2 from lldbsuite.test import lldbtest
3 from lldbsuite.test import decorators
4
5
6 class NonExistentDecoratorTestCase(lldbtest.TestBase):
7
8     mydir = lldbtest.TestBase.compute_mydir(__file__)
9
10     @decorators.nonExistentDecorator(bugnumber="yt/1300")
11     def test(self):
12         """Verify non-existent decorators are picked up by test runner."""
13         pass