import os from src.utils.paths import create_path_with_todays_date def test_create_path_with_todays_date(tmp_path): base = tmp_path / "sony_stars_monthly_feed" created = create_path_with_todays_date(str(base)) assert os.path.isdir(created) # Ensure base segment exists in created path assert str(base.name) in created