mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
27 lines
735 B
Python
27 lines
735 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: {{full_name}} <{{email}}>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.unit import TestCase
|
|
from tests.support.mock import patch
|
|
import salt.states.{{module_name}} as {{module_name}}
|
|
|
|
|
|
class {{module_name|capitalize}}TestCase(TestCase, LoaderModuleMockMixin):
|
|
|
|
def setup_loader_modules(self):
|
|
return {% raw -%} {
|
|
{% endraw -%} {{module_name}} {%- raw -%}: {
|
|
'__env__': 'base'
|
|
}
|
|
} {%- endraw %}
|
|
|
|
def test_behaviour(self):
|
|
# Test inherent behaviours
|
|
pass
|