def test_song_media_link_with_song_media_link_true(self, track, tweet_config): tweet_config.footer_config.with_song_media_link = True footer_template = FooterTemplate(track, tweet_config.footer_config) assert footer_template.song_media_link( ) == 'http://spotify.com/track/1'
def test_song_media_link_with_song_media_link_false( self, track, tweet_config): tweet_config.footer_config.with_song_media_link = False footer_template = FooterTemplate(track, tweet_config.footer_config) assert footer_template.song_media_link() == ''