bumblebee-status/tests/util.py
Tobi-wan Kenobi aacc56a4e2 [modules/cpu] Add initial version of CPU utilization module
Re-enable the CPU utilization module as proof-of-concept for the new
core engine.

see #23
2016-12-04 17:45:42 +01:00

29 lines
588 B
Python

# pylint: disable=C0103,C0111
from bumblebee.output import Widget
def assertWidgetAttributes(test, widget):
test.assertTrue(isinstance(widget, Widget))
test.assertTrue(hasattr(widget, "full_text"))
class MockOutput(object):
def start(self):
pass
def stop(self):
pass
def draw(self, widgets, engine):
engine.stop()
def flush(self):
pass
class MockWidget(object):
def __init__(self, text):
self._text = text
def full_text(self):
return self._text
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4