OSDN Git Service

basic認証をproductionのみに限定
[praisedb/praisedb.git] / spec / controllers / songs_controller_spec.rb
index c7be5f0..b3f24ea 100644 (file)
@@ -7,4 +7,15 @@ describe SongsController do
     controller.should be_an_instance_of(SongsController)
   end
 
+  it "トップページにアクセスできる" do
+    get :index
+    response.should be_success
+  end
+  
+  it "新しい曲のフォーム" do
+    get :new
+    assigns[:song].should be_instance_of Song
+  end
+
+
 end