mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
24 lines
497 B
Python
24 lines
497 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import TestCase, expectedFailure
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../')
|
|
|
|
|
|
class SimpleTest(TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
|
|
@expectedFailure
|
|
def test_fail(self):
|
|
assert False
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(SimpleTest, needs_daemon=False)
|