[#345] remove old spec file

This commit is contained in:
Alexander Machehin 2014-03-26 15:50:22 +06:00
parent 7f39986b99
commit eaaf8394c7
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
# require "spec_helper"
#
# describe ProductBuildListsController do
# describe "routing" do
#
# it "routes to #index" do
# get("/product_build_lists").should route_to("product_build_lists#index")
# end
#
# it "routes to #new" do
# get("/product_build_lists/new").should route_to("product_build_lists#new")
# end
#
# it "routes to #show" do
# get("/product_build_lists/1").should route_to("product_build_lists#show", id: "1")
# end
#
# it "routes to #edit" do
# get("/product_build_lists/1/edit").should route_to("product_build_lists#edit", id: "1")
# end
#
# it "routes to #create" do
# post("/product_build_lists").should route_to("product_build_lists#create")
# end
#
# it "routes to #update" do
# put("/product_build_lists/1").should route_to("product_build_lists#update", id: "1")
# end
#
# it "routes to #destroy" do
# delete("/product_build_lists/1").should route_to("product_build_lists#destroy", id: "1")
# end
#
# end
# end