I am a newb and struggling with making a test pass. I have 3 classes, artists, songs, and genres. The test I am trying to make pass is below:
test 'A genre has many artists' do
genre = Genre.new.tap{|g| g.name = 'rap'}
[1,2].each do
artist = Artist.new
song = Song.new
song.genre = genre
artist.add_song(song)
end
assert_equal genre.artists.count, 2
end
This is my artist class, the add_song method is the one I need to tweak. When a song is added to an artist I am trying to instantiate a new Genre object and add the artist to that genre as well. Currently not working though, when I call genre.artists it returns an empty array. class Artist attr_accessor :name, :songs, :genres, :genre, :artists @@artists = []
def initialize(name = name, genre = genre)
@artists = []
@songs = []
@genre = genre
@genres = []
@name = name
@@artists << self
end
def self.all
@@artists
end
def self.reset_artists
@@artists = []
end
def self.count
self.all.size
end
def songs_count
self.songs.size
end
def count
self.size
end
def add_song(song)
@songs << song
@genres << song.genre
Genre.new(self)
end
end
class Genre
attr_accessor :name, :songs, :artists
@@genres = []
def initialize(artists = artists)
@songs = []
@artists = artists
@name = name
@@genres << self
end
def count
self.artists.count
end
def self.all
@@genres
end
def self.reset_genres
@@genre = []
end
end
class Song
attr_accessor :name, :genre, :artist
def initialize(name = name, artist = artist, genre = genre)
@name = name
@artist = artist
@genre = genre
end
end