コード例 #1
0
def test_soup_get_cls_method():
    soup = Soup.get("www.google.com")
    if "<!doctype html>" not in str(soup).lower():
        raise AssertionError
コード例 #2
0
ファイル: test_soup.py プロジェクト: saibot94/gazpacho
def test_soup_get_cls_method():
    soup = Soup.get("www.google.com")
    assert "<!doctype html>" in str(soup).lower()