diff --git a/viz_scripts/tests/test_scaffolding.py b/viz_scripts/tests/test_scaffolding.py index ed2f47f..816222a 100644 --- a/viz_scripts/tests/test_scaffolding.py +++ b/viz_scripts/tests/test_scaffolding.py @@ -189,4 +189,11 @@ def test_get_quality_text_numerator(sensed_df): def test_get_quality_text_numerator_include_test_users(sensed_df): result = scaffolding.get_quality_text_sensed(sensed_df, include_test_users=True) - assert result == "Based on 8 trips from 5 testers and participants" \ No newline at end of file + assert result == "Based on 8 trips from 5 testers and participants" + +def test_get_file_suffix(): + year = 2024 + month = 12 + program = "default" + result = scaffolding.get_file_suffix(year, month, program) + assert result == "_2024_12_default" \ No newline at end of file