()
| 76 | |
| 77 | @pytest.mark.ok |
| 78 | def test_containing(): |
| 79 | r = get() |
| 80 | |
| 81 | python = r.html.find(containing='python') |
| 82 | assert len(python) == 192 |
| 83 | |
| 84 | for e in python: |
| 85 | assert 'python' in e.full_text.lower() |
| 86 | |
| 87 | |
| 88 | @pytest.mark.ok |
no test coverage detected
searching dependent graphs…