From 91e0bf99abb0ebe896ecc4e26951f857f87076ee Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 22 Sep 2011 11:17:18 +0200 Subject: Added support for strings with commas in template definitions. --- tests/test_cpp_domain.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/test_cpp_domain.py') diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index 61ad91e7..30cdb69e 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -28,6 +28,9 @@ def test_type_definitions(): x = 'void operator()(const boost::array& v) const' assert unicode(parse('function', x)) == x + x = 'void operator()(const boost::array& v) const' + assert unicode(parse('function', x)) == x + rv = parse('member_object', 'const std::vector< unsigned int, long> &name') assert unicode(rv) == 'const std::vector& name' -- cgit v1.2.1