Files
postter/spec/routing/users_routing_spec.rb
João Victor Geonizeli 011a8cdb77 add user scaffold
2022-02-27 14:46:30 -03:00

10 lines
209 B
Ruby

require "rails_helper"
RSpec.describe UsersController, type: :routing do
describe "routing" do
it "routes to #show" do
expect(get: "/users/1").to route_to("users#show", id: "1")
end
end
end