Ejemplo n.º 1
0
 def test_type(self):
     hed_string = 'Event/Category/Experimental stimulus,Item/Object/Vehicle/Train,Attribute/Visual/Color/Purple'
     result = HedString.split_hed_string_into_groups(hed_string)
     self.assertIsInstance(result, list)
Ejemplo n.º 2
0
 def test_function(string):
     return [
         str(child)
         for child in HedString.split_hed_string_into_groups(string)
     ]