Meshroom/tests/nodes/test/ls.py
Yann Lanthony cf243ea488 [tests] move test nodes to tests package
avoid releasing test-related nodes
2018-07-19 13:50:45 +02:00

24 lines
509 B
Python

from meshroom.core import desc
class Ls(desc.CommandLineNode):
commandLine = 'ls {inputValue} > {outputValue}'
inputs = [
desc.File(
name='input',
label='Input',
description='''''',
value='',
uid=[0],
)
]
outputs = [
desc.File(
name='output',
label='Output',
description='''''',
value=desc.Node.internalFolder + 'ls.txt',
uid=[],
)
]