1# frozen_string_literal: true 2 3RSpec.describe "Root", type: :request do 4 it "is not found" do 5 get "/" 6 7 # Generate new action via: 8 # `bundle exec hanami generate action home.index --url=/` 9 expect(last_response.status).to be(404) 10 end 11end