Work on import from discogs. Switching to mysql in local dev

This commit is contained in:
magnolia-fan
2011-09-21 22:59:39 +04:00
parent 5798955b01
commit da003cad12
15 changed files with 110 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
artist_id: 1
name: MyString
two:
artist_id: 1
name: MyString
+13
View File
@@ -0,0 +1,13 @@
# Read about fixtures at http://api.rubyonrails.org/classes/Fixtures.html
one:
track_id: 1
artist_id: 1
main: false
join: MyString
two:
track_id: 1
artist_id: 1
main: false
join: MyString
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class ArtistAliasTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
+7
View File
@@ -0,0 +1,7 @@
require 'test_helper'
class TrackArtistTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end