summaryrefslogtreecommitdiff
path: root/spec/routing/matches_routing_spec.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
commiteaf3d3cddf418c560c9619f722ea1dbc5d6cc61a (patch)
tree85d2e147a410ae528425595282aa4d7235152df8 /spec/routing/matches_routing_spec.rb
parentb677983475513c78108406901fccd5cbe9604ca6 (diff)
currently adding Session controller and view
Diffstat (limited to 'spec/routing/matches_routing_spec.rb')
-rw-r--r--spec/routing/matches_routing_spec.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/routing/matches_routing_spec.rb b/spec/routing/matches_routing_spec.rb
new file mode 100644
index 0000000..a9f8254
--- /dev/null
+++ b/spec/routing/matches_routing_spec.rb
@@ -0,0 +1,35 @@
+require "spec_helper"
+
+describe MatchesController do
+ describe "routing" do
+
+ it "routes to #index" do
+ get("/matches").should route_to("matches#index")
+ end
+
+ it "routes to #new" do
+ get("/matches/new").should route_to("matches#new")
+ end
+
+ it "routes to #show" do
+ get("/matches/1").should route_to("matches#show", :id => "1")
+ end
+
+ it "routes to #edit" do
+ get("/matches/1/edit").should route_to("matches#edit", :id => "1")
+ end
+
+ it "routes to #create" do
+ post("/matches").should route_to("matches#create")
+ end
+
+ it "routes to #update" do
+ put("/matches/1").should route_to("matches#update", :id => "1")
+ end
+
+ it "routes to #destroy" do
+ delete("/matches/1").should route_to("matches#destroy", :id => "1")
+ end
+
+ end
+end