Displaying 1 result from an estimated 1 matches for "artist_test".
2006 Mar 19
2
Unit test confusion
...39;'t get to work.
The actual error messages for the failed assertions are different:
@artists["beatles"]["name"]:
test_create(ArtistTest):
NoMethodError: You have a nil object when you didn''t expect it!
The error occured while evaluating nil.name
test/unit/artist_test.rb:15:in `test_create''
@beatles.name:
test_create(ArtistTest):
NoMethodError: You have a nil object when you didn''t expect it!
You might have expected an instance of Array.
The error occured while evaluating nil.[]
test/unit/artist_test.rb:14:in `test_create''
tes...