Test if there is major format changes in cplusplus.com
()
| 318 | |
| 319 | |
| 320 | def func_test(): |
| 321 | """Test if there is major format changes in cplusplus.com""" |
| 322 | ifs = urlopen('http://en.cppreference.com/w/cpp/container/vector') |
| 323 | result = html2groff(fixupHTML(ifs.read()), 'std::vector') |
| 324 | assert '.SH "NAME"' in result |
| 325 | assert '.SH "SYNOPSIS"' in result |
| 326 | assert '.SH "DESCRIPTION"' in result |
| 327 | |
| 328 | |
| 329 | def test(): |
nothing calls this directly
no test coverage detected