[tests] Add initial set of unit tests for plugins

Tests cover loading/unloading plugins, registering/unregistering
node plugins, and reloading them.
This commit is contained in:
Candice Bentéjac 2025-05-27 11:48:14 +02:00
parent 5bc09c8847
commit aa4d9ad92b
8 changed files with 310 additions and 0 deletions

View file

@ -0,0 +1,22 @@
__version__ = "1.0"
from meshroom.core import desc
class PluginANodeA(desc.Node):
inputs = [
desc.File(
name="input",
label="Input",
description="",
value="",
),
]
outputs = [
desc.File(
name="output",
label="Output",
description="",
value="",
),
]