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

TEST: Unit test for get_standard wrapper

parent f19c5a85
No related branches found
No related tags found
No related merge requests found
......@@ -638,3 +638,9 @@ def test_randomise():
d='design.mat', one=True)
exp = f'{randomise} -i input -o outbase -T --T2 --fonly -d design.mat -1'
assert res[0] == exp
def test_get_standard():
with testenv('get_standard') as exe:
assert fw.get_standard('brain', 'T1') == f'{exe} brain T1'
assert fw.get_standard('whole_head', r=2) == f'{exe} whole_head -r 2'
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