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