mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
17 lines
316 B
Python
17 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.unit import TestCase, expectedFailure
|
|
|
|
|
|
class SimpleTest(TestCase):
|
|
def test_success(self):
|
|
assert True
|
|
|
|
@expectedFailure
|
|
def test_fail(self):
|
|
assert False
|