Skip to content
Snippets Groups Projects
Commit e3fda1ec authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: test prelude wrapper

parent 60ca36b2
No related branches found
No related tags found
No related merge requests found
......@@ -195,6 +195,20 @@ def test_sigloss():
assert checkResult(result.output[0], *expected)
def test_prelude():
with asrt.disabled(), run.dryrun(), mockFSLDIR(bin=('prelude',)) as fsldir:
prelude = op.join(fsldir, 'bin', 'prelude')
result = fw.prelude(complex='complex',
out='out',
labelslices=True,
start=5)
expected = (prelude, ('--complex=complex',
'--out=out',
'--labelslices',
'--start=5'))
assert checkResult(result.output[0], *expected)
def test_melodic():
with asrt.disabled(), run.dryrun(), mockFSLDIR(bin=('melodic',)) as fsldir:
melodic = op.join(fsldir, 'bin', 'melodic')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment