mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
Add button to toggle comment is post update
This commit is contained in:
@@ -8,11 +8,13 @@ RSpec.describe 'comments routing', :aggregate_failures, type: :routing do
|
||||
expect(post: '/posts/1/comments').to route_to(
|
||||
controller: 'comments', action: 'create', post_id: "1"
|
||||
)
|
||||
expect(patch: '/posts/1/comments/1').to route_to(
|
||||
controller: 'comments', action: 'update', post_id: "1", id: "1"
|
||||
)
|
||||
|
||||
expect(get: '/posts/1/comments/1').not_to be_routable
|
||||
expect(get: '/posts/1/comments/new').not_to be_routable
|
||||
expect(get: '/posts/1/comments/1/edit').not_to be_routable
|
||||
expect(patch: '/posts/1/comments/1').not_to be_routable
|
||||
expect(delete: '/posts/1/comments/1').not_to be_routable
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user