示例#1
0
def test_six_month_notebook_report(report_type, report_days_list,
                                   report_months_list):
    test_days = ast.literal_eval(report_days_list)
    test_months = ast.literal_eval(report_months_list)
    status = processnotebooks(report_type, days=test_days, months=test_months)

    assert status == True
示例#2
0
def test_weekly_notebook_report():
    status = processnotebooks("weekly")

    assert status == True
示例#3
0
def test_daily_notebook_report():
    status = processnotebooks("daily")

    assert status == True
示例#4
0
def test_pay_weekly_notebook_report(report_type):
    status = processnotebooks(report_type)

    assert status == True
示例#5
0
def test_filings_monthly_notebook_report(report_type, report_days_list):
    test_days = ast.literal_eval(report_days_list)
    status = processnotebooks(report_type, days=test_days)

    assert status == True
示例#6
0
def test_weekly_notebook_report():
    """Test weekly notebook report."""
    status = processnotebooks('weekly')

    assert status is True
示例#7
0
def test_daily_notebook_report():
    """Test daily notebook report."""
    status = processnotebooks('daily')

    assert status is True
示例#8
0
def test_filings_monthly_notebook_report(report_type):
    status = processnotebooks(report_type)

    assert status == True