[recipes] pass the directories of recipes as argument of create_recipes
so it's usable as is from other cubes (eg. jpl)
#!/usr/bin/python
from logilab.common.testlib import TestCase, unittest_main
from cubicweb import devtools # setup import machinery
from cubes.apycot.entities import text_to_dict
class TextToDictTC(TestCase):
def test_multiple(self):
self.assertEqual(text_to_dict('''muloption=1
muloption= 2
single= hop
'''),
{'muloption': ['1', '2'],
'single': 'hop'})
if __name__ == '__main__':
unittest_main()