salt/tests/unit/modules/test_sensors.py
Erik Johnson 93ee5ee2b0
Fix all Sphinx warnings
Well, all but one, which we expect to see
2018-05-31 15:28:25 -05:00

36 lines
941 B
Python

# -*- coding: utf-8 -*-
'''
:codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
'''
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing Libs
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.unit import skipIf, TestCase
from tests.support.mock import (
NO_MOCK,
NO_MOCK_REASON,
MagicMock,
patch)
# Import Salt Libs
import salt.modules.sensors as sensors
@skipIf(NO_MOCK, NO_MOCK_REASON)
class SensorTestCase(TestCase, LoaderModuleMockMixin):
'''
Test cases for salt.modules.sensors
'''
def setup_loader_modules(self):
return {sensors: {}}
def test_sense(self):
'''
Test to gather lm-sensors data from a given chip
'''
with patch.dict(sensors.__salt__,
{'cmd.run': MagicMock(return_value='A:a B:b C:c D:d')}):
self.assertDictEqual(sensors.sense('chip'), {'A': 'a B'})