Ejemplo n.º 1
0
    def test_body_with_artists_false(self, track, tweet_song_config):
        tweet_song_config.body_config.with_artists = False
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.artists() == ''
Ejemplo n.º 2
0
    def test_body_with_artists_true(self, track, tweet_song_config):
        tweet_song_config.body_config.with_artists = True
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.artists() == 'Artist: Ely Guerra\n'