Meshroom/tests/plugins/meshroom/pluginB/PluginBNodeB.py
Candice Bentéjac aa4d9ad92b [tests] Add initial set of unit tests for plugins
Tests cover loading/unloading plugins, registering/unregistering
node plugins, and reloading them.
2025-06-05 14:40:13 +02:00

28 lines
No EOL
546 B
Python

__version__ = "1.0"
from meshroom.core import desc
class PluginBNodeB(desc.Node):
inputs = [
desc.File(
name="input",
label="Input",
description="",
value="",
),
desc.IntParam(
name="int",
label="Integer",
description="",
value="not an integer",
),
]
outputs = [
desc.File(
name="output",
label="Output",
description="",
value="",
),
]