40 lines
1.2 KiB
Ruby
Executable File
40 lines
1.2 KiB
Ruby
Executable File
require "rails_helper"
|
|
|
|
RSpec.describe StockCheckItemsController, type: :routing do
|
|
describe "routing" do
|
|
|
|
it "routes to #index" do
|
|
expect(:get => "/stock_check_items").to route_to("stock_check_items#index")
|
|
end
|
|
|
|
it "routes to #new" do
|
|
expect(:get => "/stock_check_items/new").to route_to("stock_check_items#new")
|
|
end
|
|
|
|
it "routes to #show" do
|
|
expect(:get => "/stock_check_items/1").to route_to("stock_check_items#show", :id => "1")
|
|
end
|
|
|
|
it "routes to #edit" do
|
|
expect(:get => "/stock_check_items/1/edit").to route_to("stock_check_items#edit", :id => "1")
|
|
end
|
|
|
|
it "routes to #create" do
|
|
expect(:post => "/stock_check_items").to route_to("stock_check_items#create")
|
|
end
|
|
|
|
it "routes to #update via PUT" do
|
|
expect(:put => "/stock_check_items/1").to route_to("stock_check_items#update", :id => "1")
|
|
end
|
|
|
|
it "routes to #update via PATCH" do
|
|
expect(:patch => "/stock_check_items/1").to route_to("stock_check_items#update", :id => "1")
|
|
end
|
|
|
|
it "routes to #destroy" do
|
|
expect(:delete => "/stock_check_items/1").to route_to("stock_check_items#destroy", :id => "1")
|
|
end
|
|
|
|
end
|
|
end
|