mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
222be7b446
* Double to single quotes
11 lines
196 B
Python
11 lines
196 B
Python
from salttesting import TestCase, expectedFailure
|
|
|
|
|
|
class SimpleTest(TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
|
|
@expectedFailure
|
|
def test_fail(self):
|
|
assert False
|