salt/tests/unit/simple.py

20 lines
409 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
from salttesting import TestCase, expectedFailure
2013-09-11 21:17:15 +00:00
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../')
2012-05-29 16:40:20 +00:00
class SimpleTest(TestCase):
def test_success(self):
assert True
2012-05-29 16:40:20 +00:00
@expectedFailure
def test_fail(self):
assert False
2013-09-11 21:17:15 +00:00
if __name__ == '__main__':
from integration import run_tests
run_tests(SimpleTest, needs_daemon=False)