We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d76ba commit b23fbc0Copy full SHA for b23fbc0
nipype/interfaces/freesurfer/tests/test_preprocess.py
@@ -154,3 +154,9 @@ def test_bbregister(create_files_in_directory):
154
'--reg {base}_bbreg_fsaverage.dat '
155
'--mov {full} --s fsaverage'.format(
156
full=filelist[0], base=base))
157
+
158
+def test_FSVersion():
159
+ """Check that FSVersion is a string that can be compared with LooseVersion
160
+ """
161
+ assert isinstance(freesurfer.preprocess.FSVersion, str)
162
+ assert LooseVersion(freesurfer.preprocess.FSVersion) >= LooseVersion("0")
0 commit comments