summaryrefslogtreecommitdiff
path: root/trunk/test-plugins/hello_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test-plugins/hello_plugin.py')
-rw-r--r--trunk/test-plugins/hello_plugin.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/trunk/test-plugins/hello_plugin.py b/trunk/test-plugins/hello_plugin.py
new file mode 100644
index 0000000..7f0472c
--- /dev/null
+++ b/trunk/test-plugins/hello_plugin.py
@@ -0,0 +1,11 @@
+import pluginmgr
+
+class Hello(pluginmgr.Plugin):
+
+ def __init__(self, foo, bar=None):
+ self.foo = foo
+ self.bar = bar
+
+ @property
+ def version(self):
+ return '0.0.1'