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