clear artist urls before saving url string (fixes #3731)
This commit is contained in:
@@ -49,6 +49,13 @@ class ArtistTest < ActiveSupport::TestCase
|
||||
refute(@artist.urls[0].is_active?)
|
||||
end
|
||||
|
||||
should "allow activating a url" do
|
||||
@artist = Artist.create(name: "blah", url_string: "-http://monet.com")
|
||||
@artist.update(url_string: "http://monet.com")
|
||||
assert_equal(1, @artist.urls.count)
|
||||
assert(@artist.urls[0].is_active?)
|
||||
end
|
||||
|
||||
should "should have a valid name" do
|
||||
@artist = Artist.new(:name => "-blah")
|
||||
@artist.save
|
||||
|
||||
Reference in New Issue
Block a user