blob: ca2d3ade9327f463a4985e939621d2a4c9bffd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
RSpec.describe "routes for Routes", type: :routing do
it "routes to /referentials/:id/lines/:id/routes/:id/duplicate" do
expect(
get: '/referentials/:referential_id/lines/:line_id/routes/:id/duplicate'
).to be_routable
expect(
post: '/referentials/:referential_id/lines/:line_id/routes/:id/duplicate'
).to be_routable
end
end
|