Cache album pics to mongo & listen url & check if track in db

This commit is contained in:
magnolia-fan
2011-04-07 08:02:49 +04:00
parent 3c96c151bd
commit 63136f8b67
14 changed files with 96 additions and 28 deletions
+11
View File
@@ -0,0 +1,11 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
# This model initially had no columns defined. If you add columns to the
# model remove the '{}' from the fixture names and add the columns immediately
# below each fixture, per the syntax in the comments below
#
one: {}
# column: value
#
two: {}
# column: value
@@ -0,0 +1,8 @@
require 'test_helper'
class TrackControllerTest < ActionController::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 AlbumPicTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end
@@ -0,0 +1,4 @@
require 'test_helper'
class TrackHelperTest < ActionView::TestCase
end