2016-12-04 10:09:10 +00:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
2016-12-17 06:05:23 +00:00
|
|
|
"""Test module
|
|
|
|
"""
|
2016-12-04 10:09:10 +00:00
|
|
|
|
|
|
|
import bumblebee.engine
|
|
|
|
|
2017-03-04 17:53:31 +00:00
|
|
|
ALIASES = [ "test-alias" ]
|
|
|
|
|
2016-12-04 10:09:10 +00:00
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 07:23:53 +00:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2016-12-08 07:44:54 +00:00
|
|
|
bumblebee.output.Widget(full_text="test")
|
|
|
|
)
|
2016-12-04 10:09:10 +00:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|