def test_generate_image_processor(tmpdir): "Test generate_image with a wrong processor name." init_logging() dstfile = str(tmpdir.join(TEST_IMAGE)) with pytest.raises(SystemExit): generate_image(SRCFILE, dstfile, (200, 200), None, method='WrongMethod')
def test_generate_image_processor(tmpdir): "Test generate_image with a wrong processor name." init_logging() dstfile = str(tmpdir.join(TEST_IMAGE)) with pytest.raises(SystemExit): settings = create_settings(img_size=(200, 200), img_processor="WrongMethod") generate_image(SRCFILE, dstfile, settings)
def test_generate_image_processor(tmpdir): "Test generate_image with a wrong processor name." init_logging('sigal') dstfile = str(tmpdir.join(TEST_IMAGE)) settings = create_settings(img_size=(200, 200), img_processor='WrongMethod') with pytest.raises(SystemExit): generate_image(SRCFILE, dstfile, settings)