Test if there is major format changes in cplusplus.com
()
| 221 | |
| 222 | |
| 223 | def func_test(): |
| 224 | """Test if there is major format changes in cplusplus.com""" |
| 225 | ifs = urlopen('http://www.cplusplus.com/printf') |
| 226 | result = html2groff(fixupHTML(ifs.read()), 'printf') |
| 227 | assert '.SH "NAME"' in result |
| 228 | assert '.SH "TYPE"' in result |
| 229 | assert '.SH "DESCRIPTION"' in result |
| 230 | |
| 231 | |
| 232 | def test(): |
nothing calls this directly
no test coverage detected