def test_parse_dataset():
    history = p.load_history(dataset_file)
    
    return dict(
        history="REPLACE THIS WITH HISTORY FORMATTED AS HTML TABLE ROWS",
        projection="",
        title="Historical Atmospheric CO<sub>2</sub>")
def test_projection():
    history = p.load_history(dataset_file)
    end_year = 2058

    return dict(
        history=samples_to_html(history),
        projection=samples_to_html(p.project(history, to_year=end_year)),
        title=" Atmospheric CO<sub>2</sub> Projected to " + str(end_year))
def test_projection():
    history = p.load_history(dataset_file)
    end_year=2058
    
    return dict(
        history=samples_to_html(history),
        projection=samples_to_html(p.project(history, to_year=end_year)),
        title=" Atmospheric CO<sub>2</sub> Projected to " + str(end_year))
def test_parse_dataset():
    return dict(history=samples_to_html(p.load_history(dataset_file)),
                projection="",
                title="Historical Atmospheric CO<sub>2</sub>")
def test_parse_dataset():
    return dict(
        history=samples_to_html(p.load_history(dataset_file)),
        projection="",
        title="Historical Atmospheric CO<sub>2</sub>")