Files
x-stake/spec/requests/home_spec.rb
2021-08-18 15:58:04 -03:00

12 lines
238 B
Ruby

# frozen_string_literal: true
require "rails_helper"
RSpec.describe("Homes", type: :request) do
describe "GET /" do
it "returns http success" do
get "/"
expect(response).to(have_http_status(:success))
end
end
end