OSDN Git Service

Merge branch 'v03_test' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v03_test
[pettanr/pettanr.git] / spec / routing / speachbaloons_routing_spec.rb
1 require "spec_helper"
2
3 describe SpeachbaloonsController do
4   describe "routing" do
5
6     it "routes to #index" do
7       get("/speachbaloons").should route_to("speachbaloons#index")
8     end
9
10     it "routes to #new" do
11       get("/speachbaloons/new").should route_to("speachbaloons#new")
12     end
13
14     it "routes to #show" do
15       get("/speachbaloons/1").should route_to("speachbaloons#show", :id => "1")
16     end
17
18     it "routes to #edit" do
19       get("/speachbaloons/1/edit").should route_to("speachbaloons#edit", :id => "1")
20     end
21
22     it "routes to #create" do
23       post("/speachbaloons").should route_to("speachbaloons#create")
24     end
25
26     it "routes to #update" do
27       put("/speachbaloons/1").should route_to("speachbaloons#update", :id => "1")
28     end
29
30     it "routes to #destroy" do
31       delete("/speachbaloons/1").should route_to("speachbaloons#destroy", :id => "1")
32     end
33
34   end
35 end