summaryrefslogtreecommitdiff
path: root/tests/internals/pluginloading/customsource/pluginsources/foo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/internals/pluginloading/customsource/pluginsources/foo.py')
-rw-r--r--tests/internals/pluginloading/customsource/pluginsources/foo.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/internals/pluginloading/customsource/pluginsources/foo.py b/tests/internals/pluginloading/customsource/pluginsources/foo.py
deleted file mode 100644
index c5229f3e2..000000000
--- a/tests/internals/pluginloading/customsource/pluginsources/foo.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from buildstream import Source
-
-
-class FooSource(Source):
-
- BST_MIN_VERSION = "2.0"
-
- def preflight(self):
- pass
-
- def configure(self, node):
- pass
-
- def get_unique_key(self):
- pass
-
-
-def setup():
- return FooSource