You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/spec/routing/categories_routing_spec.rb

40 lines
1.0 KiB

require "rails_helper"
RSpec.describe CategoriesController, type: :routing do
describe "routing" do
it "routes to #index" do
expect(:get => "/categories").to route_to("categories#index")
end
it "routes to #new" do
expect(:get => "/categories/new").to route_to("categories#new")
end
it "routes to #show" do
expect(:get => "/categories/1").to route_to("categories#show", :id => "1")
end
it "routes to #edit" do
expect(:get => "/categories/1/edit").to route_to("categories#edit", :id => "1")
end
it "routes to #create" do
expect(:post => "/categories").to route_to("categories#create")
end
it "routes to #update via PUT" do
expect(:put => "/categories/1").to route_to("categories#update", :id => "1")
end
it "routes to #update via PATCH" do
expect(:patch => "/categories/1").to route_to("categories#update", :id => "1")
end
it "routes to #destroy" do
expect(:delete => "/categories/1").to route_to("categories#destroy", :id => "1")
end
end
end