Files
euchre_camp/spec/requests/root_spec.rb
T
2024-09-06 12:59:40 -07:00

12 lines
257 B
Ruby

# frozen_string_literal: true
RSpec.describe "Root", type: :request do
it "is not found" do
get "/"
# Generate new action via:
# `bundle exec hanami generate action home.index --url=/`
expect(last_response.status).to be(404)
end
end