mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
9 lines
178 B
Python
9 lines
178 B
Python
import unittest
|
|
|
|
class SimpleTest(unittest.TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
@unittest.expectedFailure
|
|
def test_fail(self):
|
|
assert False
|