summaryrefslogtreecommitdiff
path: root/spec/routing/games_routing_spec.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
commitb677983475513c78108406901fccd5cbe9604ca6 (patch)
treef83b5e20930cbe1be890af41ea1d0c0d2ebf5e2e /spec/routing/games_routing_spec.rb
parent4e682a9a8596326a2d1faab6c44e5a54918c5ba0 (diff)
parent1bfc0513fa113f5b4a61e89d74e42dd78ece44e7 (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Conflicts: Gemfile.lock app/views/layouts/application.html.erb config/routes.rb
Diffstat (limited to 'spec/routing/games_routing_spec.rb')
-rw-r--r--spec/routing/games_routing_spec.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/routing/games_routing_spec.rb b/spec/routing/games_routing_spec.rb
deleted file mode 100644
index 3b3ec0c..0000000
--- a/spec/routing/games_routing_spec.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-require "spec_helper"
-
-describe GamesController do
- describe "routing" do
-
- it "routes to #index" do
- get("/games").should route_to("games#index")
- end
-
- it "routes to #new" do
- get("/games/new").should route_to("games#new")
- end
-
- it "routes to #show" do
- get("/games/1").should route_to("games#show", :id => "1")
- end
-
- it "routes to #edit" do
- get("/games/1/edit").should route_to("games#edit", :id => "1")
- end
-
- it "routes to #create" do
- post("/games").should route_to("games#create")
- end
-
- it "routes to #update" do
- put("/games/1").should route_to("games#update", :id => "1")
- end
-
- it "routes to #destroy" do
- delete("/games/1").should route_to("games#destroy", :id => "1")
- end
-
- end
-end