mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
11 lines
197 B
Python
11 lines
197 B
Python
from saltunittest import TestCase, expectedFailure
|
|
|
|
|
|
class SimpleTest(TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
|
|
@expectedFailure
|
|
def test_fail(self):
|
|
assert False
|