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

TEST: Test present but empty, and test absent

parent 7c72afde
No related branches found
No related tags found
No related merge requests found
......@@ -149,9 +149,8 @@ def test_AtlasDescription():
def test_StatisticHeader():
with tests.testdir() as testdir:
hdr = '<statistic>T</statistic>' \
'<units>M</units>' \
'<units></units>' \
'<precision>3</precision>' \
'<lower>15</lower>' \
'<upper>75</upper>'
xmlfile = _make_dummy_atlas(testdir,
'statlas',
......@@ -163,9 +162,9 @@ def test_StatisticHeader():
desc = atlases.AtlasDescription(xmlfile, 'StAtlas')
assert desc.atlasType == 'statistic'
assert desc.statistic == 'T'
assert desc.units == 'M'
assert desc.units == ''
assert desc.precision == 3
assert desc.lower == 15
assert desc.lower == 0
assert desc.upper == 75
......
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