(path)
| 161 | return done(path, ok) |
| 162 | |
| 163 | def check_email(path): |
| 164 | (ok, email) = check_raw(path, 500) |
| 165 | ok = ok and email.find('@') != -1 and email.find('.') != -1 |
| 166 | return done(path, ok) |
| 167 | |
| 168 | def check_exact(path, expected): |
| 169 | (ok, value) = check_raw(path, len(expected)) |
no test coverage detected