コード例 #1
0
def test_fourchan_unknown_list_3():
    with pytest.raises(Exception):
        thread = pychan.FourChan("['zxc', 'qwe']")
コード例 #2
0
def test_fourchan_parse_fuuka_thread():
    with pytest.raises(Exception):
        thread = pychan.FourChan("tests/desu_thread.json")
コード例 #3
0
def test_fourchan_unknown_list_2():
    with pytest.raises(Exception):
        thread = pychan.FourChan("[1,2,34,5]")
コード例 #4
0
def test_fourchan_empty_list():
    with pytest.raises(Exception):
        thread = pychan.FourChan("[]")
コード例 #5
0
def test_fourchan_unknown_string():
    with pytest.raises(Exception):
        thread = pychan.FourChan("""n78yo342v>{?>L}?~!@#+_)|}{\\|""")
コード例 #6
0
def test_fourchan_unknown_dict():
    with pytest.raises(Exception):
        thread = pychan.FourChan("""{ "zxc": "qwe", "cvz": 123 }""")
コード例 #7
0
def test_fourchan_empty_dict():
    with pytest.raises(Exception):
        thread = pychan.FourChan("{}")