Sessions, lastfm auth workarounds

This commit is contained in:
magnolia-fan
2011-06-22 11:23:07 +04:00
parent 47b21961a0
commit 4326a4960b
17 changed files with 193 additions and 9 deletions
+9
View File
@@ -0,0 +1,9 @@
# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
one:
user_id: 1
key: MyString
two:
user_id: 1
key: MyString
@@ -0,0 +1,8 @@
require 'test_helper'
class LastFmControllerTest < ActionController::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end
+4
View File
@@ -0,0 +1,4 @@
require 'test_helper'
class LastFmHelperTest < ActionView::TestCase
end
+8
View File
@@ -0,0 +1,8 @@
require 'test_helper'
class SessionTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end