Files
postter/spec/routing/posts_routing_spec.rb
João Victor Geonizeli 1d692b31f8 add post
2022-02-27 17:02:37 -03:00

19 lines
399 B
Ruby

require "rails_helper"
RSpec.describe PostsController, type: :routing do
describe "routing" do
it "routes to #index" do
expect(get: "/posts").to route_to("posts#index")
end
it "routes to #show" do
expect(get: "/posts/1").to route_to("posts#show", id: "1")
end
it "routes to #create" do
expect(post: "/posts").to route_to("posts#create")
end
end
end