コード例 #1
0
ファイル: test_twitter.py プロジェクト: juanitodread/gorrion
    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'
コード例 #2
0
ファイル: test_twitter.py プロジェクト: juanitodread/gorrion
    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() == ''