spreadsheet-ods 1.0.4

Read and write ODS files
Documentation
mod lib_test;

use lib_test::*;
use spreadsheet_ods::*;

#[test]
fn issue1() {
    let output_file = std::path::Path::new("test_out/issue1.ods");

    let mut wb = WorkBook::new_empty();

    // let mut style = Style::new_cell_style("Square style", "");
    // style.col_mut().set_col_width(Length::Cm(10.0));
    // style.row_mut().set_row_height(Length::Cm(10.0));
    // wb.add_style(style);

    let mut sheet = Sheet::new("test");
    sheet.set_row_height(1, cm!(10));
    sheet.set_col_width(1, cm!(10));
    sheet.set_value(1, 1, ());
    //sheet.cell_mut(1, 1).set_style("Square style");
    wb.push_sheet(sheet);

    if let Err(x) = test_write_ods(&mut wb, output_file) {
        println!("Error: {}", x)
    }
}