OSDN Git Service

add test
[pettanr/pettanr.git] / spec / routing / speach_baloons_routing_spec.rb
index c52d53f..3285439 100644 (file)
@@ -1,34 +1,34 @@
 require "spec_helper"
 
-describe SpeachBaloonsController do
+describe SpeachBalloonsController do
   describe "routing" do
 
     it "routes to #index" do
-      get("/speach_baloons").should route_to("speach_baloons#index")
+      get("/speach_balloons").should route_to("speach_balloons#index")
     end
 
     it "routes to #new" do
-      get("/speach_baloons/new").should route_to("speach_baloons#new")
+      get("/speach_balloons/new").should route_to("speach_balloons#new")
     end
 
     it "routes to #show" do
-      get("/speach_baloons/1").should route_to("speach_baloons#show", :id => "1")
+      get("/speach_balloons/1").should route_to("speach_balloons#show", :id => "1")
     end
 
     it "routes to #edit" do
-      get("/speach_baloons/1/edit").should route_to("speach_baloons#edit", :id => "1")
+      get("/speach_balloons/1/edit").should route_to("speach_balloons#edit", :id => "1")
     end
 
     it "routes to #create" do
-      post("/speach_baloons").should route_to("speach_baloons#create")
+      post("/speach_balloons").should route_to("speach_balloons#create")
     end
 
     it "routes to #update" do
-      put("/speach_baloons/1").should route_to("speach_baloons#update", :id => "1")
+      put("/speach_balloons/1").should route_to("speach_balloons#update", :id => "1")
     end
 
     it "routes to #destroy" do
-      delete("/speach_baloons/1").should route_to("speach_baloons#destroy", :id => "1")
+      delete("/speach_balloons/1").should route_to("speach_balloons#destroy", :id => "1")
     end
 
   end