bumblebee-status/tests/modules/test_kernel.py

18 lines
620 B
Python
Raw Normal View History

import unittest
2020-03-29 14:35:20 +02:00
import core.config
import modules.core.kernel
class kernel(unittest.TestCase):
def setUp(self):
self.someKernel = 'this-is-my-kernel'
self.module = modules.core.kernel.Module(config=core.config.Config([]), theme=None)
def test_full_text(self):
with unittest.mock.patch('modules.core.kernel.platform') as platform:
platform.release.return_value = self.someKernel
self.assertEqual(1, len(self.module.widgets()))
self.assertEqual(self.someKernel, self.module.widget().full_text())
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4