summaryrefslogtreecommitdiff
path: root/test-plugins
diff options
context:
space:
mode:
Diffstat (limited to 'test-plugins')
-rw-r--r--test-plugins/aaa_hello_plugin.py2
-rw-r--r--test-plugins/hello_plugin.py2
-rw-r--r--test-plugins/oldhello_plugin.py3
-rw-r--r--test-plugins/wrongversion_plugin.py2
4 files changed, 8 insertions, 1 deletions
diff --git a/test-plugins/aaa_hello_plugin.py b/test-plugins/aaa_hello_plugin.py
index b8f3253..9af3f83 100644
--- a/test-plugins/aaa_hello_plugin.py
+++ b/test-plugins/aaa_hello_plugin.py
@@ -6,3 +6,5 @@ class Hello(cliapp.Plugin):
self.foo = foo
self.bar = bar
+ def enable(self):
+ pass
diff --git a/test-plugins/hello_plugin.py b/test-plugins/hello_plugin.py
index a102502..c47adb7 100644
--- a/test-plugins/hello_plugin.py
+++ b/test-plugins/hello_plugin.py
@@ -13,3 +13,5 @@ class Hello(cliapp.Plugin):
def setup(self):
self.setup_called = True
+ def enable(self):
+ pass
diff --git a/test-plugins/oldhello_plugin.py b/test-plugins/oldhello_plugin.py
index e401ff7..9af3f83 100644
--- a/test-plugins/oldhello_plugin.py
+++ b/test-plugins/oldhello_plugin.py
@@ -6,4 +6,5 @@ class Hello(cliapp.Plugin):
self.foo = foo
self.bar = bar
-
+ def enable(self):
+ pass
diff --git a/test-plugins/wrongversion_plugin.py b/test-plugins/wrongversion_plugin.py
index 9f54908..caf6307 100644
--- a/test-plugins/wrongversion_plugin.py
+++ b/test-plugins/wrongversion_plugin.py
@@ -10,3 +10,5 @@ class WrongVersion(cliapp.Plugin):
def __init__(self, *args, **kwargs):
pass
+ def enable(self):
+ pass