Exemplo n.º 1
0
    def test_to_body_with_release_date_only(self, track, tweet_song_config):
        tweet_song_config.body_config.with_track = False
        tweet_song_config.body_config.with_album = False
        tweet_song_config.body_config.with_artists = False
        tweet_song_config.body_config.with_tracks = False
        tweet_song_config.body_config.with_release_date = True
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.to_body() == 'Release: 2006\n'
Exemplo n.º 2
0
    def test_to_body_with_album_only(self, track, tweet_song_config):
        tweet_song_config.body_config.with_track = False
        tweet_song_config.body_config.with_album = True
        tweet_song_config.body_config.with_artists = False
        tweet_song_config.body_config.with_tracks = False
        tweet_song_config.body_config.with_release_date = False
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.to_body() == 'Album: Pa morirse de amor\n'
Exemplo n.º 3
0
    def test_to_body_with_artists_only(self, track, tweet_song_config):
        tweet_song_config.body_config.with_track = False
        tweet_song_config.body_config.with_album = False
        tweet_song_config.body_config.with_artists = True
        tweet_song_config.body_config.with_tracks = False
        tweet_song_config.body_config.with_release_date = False
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.to_body() == 'Artist: Ely Guerra\n'
Exemplo n.º 4
0
    def test_to_body_with_track_only(self, track, tweet_song_config):
        tweet_song_config.body_config.with_track = True
        tweet_song_config.body_config.with_album = False
        tweet_song_config.body_config.with_artists = False
        tweet_song_config.body_config.with_tracks = False
        tweet_song_config.body_config.with_release_date = False
        body_template = BodyTemplate(track, tweet_song_config.body_config)

        assert body_template.to_body() == 'Track: 1. Peligro\n'
Exemplo n.º 5
0
    def test_to_body_default_config(self, track, tweet_config):
        body_template = BodyTemplate(track, tweet_config.body_config)

        assert body_template.to_body() == ''