Files
adamantium/spec/requests/root_spec.rb
2023-01-27 22:55:09 +11:00

10 lines
162 B
Ruby

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