diff --git a/tests/test_requests_html.py b/tests/test_requests_html.py
index 1cfa72c..27a4af3 100644
--- a/tests/test_requests_html.py
+++ b/tests/test_requests_html.py
@@ -43,6 +43,13 @@ def test_css_selector():
assert menu_item in about.full_text.split('\n')
+@pytest.mark.ok
+def test_containing():
+ r = get()
+
+ python = r.html.find(containing='python')
+ assert len(python) == 191
+
@pytest.mark.ok
def test_attrs():
r = get()
@@ -159,4 +166,4 @@ def test_bare_js_eval():
if __name__ == '__main__':
- test_class_seperation()
+ test_containing()