diff --git a/tests/test_framing/test_compilation.py b/tests/test_framing/test_compilation.py new file mode 100644 index 0000000000000000000000000000000000000000..6b9cf40b9560122a94a943276387a61fe8d2be73 --- /dev/null +++ b/tests/test_framing/test_compilation.py @@ -0,0 +1,14 @@ +# coding=UTF-8 +""" +It sounds like a melody +""" +from __future__ import print_function, absolute_import, division +import six +import unittest + + +class TestCompilation(unittest.TestCase): + def test_comp(self): + from coolamqp.framing.compilation.compile_definitions import compile_definitions + compile_definitions(xml_file='resources/amqp0-9-1.extended.xml', out_file='/tmp/definitions.py') +