mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
user and recipient and tests
This commit is contained in:
parent
d70e30ec93
commit
df2ea95ceb
50 changed files with 1412 additions and 37 deletions
39
spec/routing/recipients_routing_spec.rb
Normal file
39
spec/routing/recipients_routing_spec.rb
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
require "rails_helper"
|
||||
|
||||
RSpec.describe RecipientsController, type: :routing do
|
||||
describe "routing" do
|
||||
|
||||
it "routes to #index" do
|
||||
expect(:get => "/recipients").to route_to("recipients#index")
|
||||
end
|
||||
|
||||
it "routes to #new" do
|
||||
expect(:get => "/recipients/new").to route_to("recipients#new")
|
||||
end
|
||||
|
||||
it "routes to #show" do
|
||||
expect(:get => "/recipients/1").to route_to("recipients#show", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #edit" do
|
||||
expect(:get => "/recipients/1/edit").to route_to("recipients#edit", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #create" do
|
||||
expect(:post => "/recipients").to route_to("recipients#create")
|
||||
end
|
||||
|
||||
it "routes to #update via PUT" do
|
||||
expect(:put => "/recipients/1").to route_to("recipients#update", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #update via PATCH" do
|
||||
expect(:patch => "/recipients/1").to route_to("recipients#update", :id => "1")
|
||||
end
|
||||
|
||||
it "routes to #destroy" do
|
||||
expect(:delete => "/recipients/1").to route_to("recipients#destroy", :id => "1")
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue