コード例 #1
0
def test_gen_graph(excel):
    excel_compiler = ExcelCompiler(excel=excel)
    excel.set_sheet('trim-range')
    excel_compiler._gen_graph('B2')

    with pytest.raises(ValueError, match='Unknown seed'):
        excel_compiler._gen_graph(None)