Discogs releases import. Good.

This commit is contained in:
magnolia-fan
2011-09-22 23:54:09 +04:00
parent e235ad7fc5
commit e46717af01
18 changed files with 225 additions and 23 deletions
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
album_id: 1
release_format_id: 1
two:
album_id: 1
release_format_id: 1
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
album_id: 1
genre_id: 1
two:
album_id: 1
genre_id: 1
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
album_id: 1
style_id: 1
two:
album_id: 1
style_id: 1
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
name: MyString
hash: MyString
two:
name: MyString
hash: MyString
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class AlbumFormatTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class AlbumGenreTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class AlbumStyleTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class ReleaseFormatTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end