summaryrefslogtreecommitdiff
path: root/tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py')
-rw-r--r--tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py b/tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py
deleted file mode 100644
index 244009764..000000000
--- a/tests/plugins/deprecationwarnings/plugins/elements/deprecated_plugin.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from buildstream import BuildElement
-
-
-class DeprecatedPlugin(BuildElement):
- BST_MIN_VERSION = "2.0"
- BST_PLUGIN_DEPRECATED = True
- BST_PLUGIN_DEPRECATION_MESSAGE = "Here is some detail."
-
-
-# Plugin entry point
-def setup():
- return DeprecatedPlugin