OSDN Git Service

add natural number validater
[pettanr/pettanr.git] / spec / routing / system_pictures_routing_spec.rb
1 require "spec_helper"
2
3 describe SystemPicturesController do
4   describe "routing" do
5
6     it "routes to #index" do
7       get("/system_pictures").should route_to("system_pictures#index")
8     end
9
10     it "routes to #new" do
11       get("/system_pictures/new").should route_to("system_pictures#new")
12     end
13
14     it "routes to #show" do
15       get("/system_pictures/1").should route_to("system_pictures#show", :id => "1")
16     end
17
18     it "routes to #edit" do
19       get("/system_pictures/1/edit").should route_to("system_pictures#edit", :id => "1")
20     end
21
22     it "routes to #create" do
23       post("/system_pictures").should route_to("system_pictures#create")
24     end
25
26     it "routes to #update" do
27       put("/system_pictures/1").should route_to("system_pictures#update", :id => "1")
28     end
29
30     it "routes to #destroy" do
31       delete("/system_pictures/1").should route_to("system_pictures#destroy", :id => "1")
32     end
33
34   end
35 end