mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
ab7ace6aa5
Integration tests requiring a salt master and daemon were seperated from pure unit tests. For now both are run with runtest.py. In the future it could take arguments for which type of tests to run.
9 lines
195 B
Python
9 lines
195 B
Python
from saltunittest import TestCase, expectedFailure
|
|
|
|
class SimpleTest(TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
@expectedFailure
|
|
def test_fail(self):
|
|
assert False
|