mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
29 lines
726 B
Python
29 lines
726 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`{{full_name}} <{{email}}>`
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
import salt.modules.{{module_name}} as {{module_name}}
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class {{module_name|capitalize}}TestCase(TestCase, LoaderModuleMockMixin):
|
|
|
|
def setup_loader_modules(self):
|
|
return {% raw -%} { {%- endraw -%} {{module_name}} {%- raw -%}: {}} {%- endraw %}
|
|
|
|
def test_behaviour(self):
|
|
# Test inherent behaviours
|
|
pass
|