| 1234567891011121314151617181920212223 | from __future__ import absolute_importfrom __future__ import unicode_literalsimport unittestfrom compose.utils import unquote_pathclass UnquotePathTest(unittest.TestCase):    def test_no_quotes(self):        assert unquote_path('hello') == 'hello'    def test_simple_quotes(self):        assert unquote_path('"hello"') == 'hello'    def test_uneven_quotes(self):        assert unquote_path('"hello') == '"hello'        assert unquote_path('hello"') == 'hello"'    def test_nested_quotes(self):        assert unquote_path('""hello""') == '"hello"'        assert unquote_path('"hel"lo"') == 'hel"lo'        assert unquote_path('"hello""') == 'hello"'
 |