"""Test for User logic tier.""" from podcast.logic import user_podcast_settings def test_get_user_settings(mock_current_user): """Test get user settings.""" result = user_podcast_settings.get_user_settings() assert result['ad_notifications'] is True assert result['podcast_notifications'] is False def test_update_user_settings(mock_current_user): """Test update user settings.""" result = user_podcast_settings.update_user_settings({'ad_notifications': False}) assert result['ad_notifications'] is False assert result['podcast_notifications'] is False