+ with analyzer() as anl:
+ info = anl.process_place({'name' : {'name' : 'Soft bAr', 'ref': '34'}})
+
+ assert info['names'] == '{1,2,3,4,5}'
+
+
+@pytest.mark.parametrize('sep', [',' , ';'])
+def test_full_names_with_separator(analyzer, getorcreate_term_id, sep):
+ with analyzer() as anl:
+ names = anl._compute_full_names({'name' : sep.join(('New York', 'Big Apple'))})
+
+ assert names == set(('NEW YORK', 'BIG APPLE'))
+