Files
adamantium/spec/requests/root_spec.rb

10 lines
157 B
Ruby

# frozen_string_literal: true
RSpec.describe "Root", :requests do
it "is successful" do
get "/"
expect(last_response).to be_successful
end
end