OSDN Git Service

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