Bringing on

This commit is contained in:
magnolia-fan
2011-06-14 20:05:12 +04:00
parent c4165a928c
commit 2c52349576
46 changed files with 1070 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
name: MyString
artist_id: 1
year: 1
status: 1
pic_url: MyString
two:
name: MyString
artist_id: 1
year: 1
status: 1
pic_url: MyString
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
name: MyString
desc: MyText
two:
name: MyString
desc: MyText
+17
View File
@@ -0,0 +1,17 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
name: MyString
album_id: 1
position: 1
bonus: 1
live: 1
acoustic: 1
two:
name: MyString
album_id: 1
position: 1
bonus: 1
live: 1
acoustic: 1
+8
View File
@@ -0,0 +1,8 @@
require 'test_helper'
class AlbumTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end
+8
View File
@@ -0,0 +1,8 @@
require 'test_helper'
class ArtistTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end
+8
View File
@@ -0,0 +1,8 @@
require 'test_helper'
class TrackTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end