diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:54:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:58:39 +0000 |
commit | 129a1fb4dbc375be0fa926964aa1be46a0cdbbef (patch) | |
tree | 04c0088df47415b24a5be1325d3656b8c3881c04 /self-hosting-plugins/debputy_self_hosting_test.py | |
parent | Initial commit. (diff) | |
download | debputy-129a1fb4dbc375be0fa926964aa1be46a0cdbbef.tar.xz debputy-129a1fb4dbc375be0fa926964aa1be46a0cdbbef.zip |
Adding upstream version 0.1.21.upstream/0.1.21
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'self-hosting-plugins/debputy_self_hosting_test.py')
-rw-r--r-- | self-hosting-plugins/debputy_self_hosting_test.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/self-hosting-plugins/debputy_self_hosting_test.py b/self-hosting-plugins/debputy_self_hosting_test.py new file mode 100644 index 0000000..c8da6cc --- /dev/null +++ b/self-hosting-plugins/debputy_self_hosting_test.py @@ -0,0 +1,10 @@ +from debputy.plugin.api.test_api import ( + initialize_plugin_under_test, + build_virtual_file_system, +) + + +def test_plugin(): + plugin = initialize_plugin_under_test() + fs = build_virtual_file_system([]) + plugin.run_metadata_detector("debputy-self-hosting", fs) |