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