diff options
| author | mitsuhiko <devnull@localhost> | 2010-03-30 18:57:56 +0200 |
|---|---|---|
| committer | mitsuhiko <devnull@localhost> | 2010-03-30 18:57:56 +0200 |
| commit | 9fa8760b6390548cf83cf4b36ab258805455d3c9 (patch) | |
| tree | 22439b6b4224b0732f2bfd9c5e9f4ea822da967b /tests/test_cpp_domain.py | |
| parent | 37967d05b70e34c2426f2c31209d0cdc5edd054e (diff) | |
| download | sphinx-9fa8760b6390548cf83cf4b36ab258805455d3c9.tar.gz | |
long double exists.
Diffstat (limited to 'tests/test_cpp_domain.py')
| -rw-r--r-- | tests/test_cpp_domain.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index b12e57af..1e722602 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -34,6 +34,8 @@ def test_type_definitions(): x = 'module::myclass::operator std::vector<std::string>()' assert unicode(parse('function', x)) == x + x = 'explicit module::myclass::foo::foo()' + assert unicode(parse('function', x)) == x x = 'std::vector<std::pair<std::string, long long>> module::blah' assert unicode(parse('type_object', x)) == x @@ -44,3 +46,10 @@ def test_type_definitions(): def test_operators(): x = parse('function', 'void operator new [ ] ()') assert unicode(x) == 'void operator new[]()' + + x = parse('function', 'void operator delete ()') + assert unicode(x) == 'void operator delete()' + + for op in '*-+=/%!': + x = parse('function', 'void operator %s ()' % op) + assert unicode(x) == 'void operator%s()' % op |
