dawarich/spec/requests/home_spec.rb

13 lines
252 B
Ruby
Raw Normal View History

2022-10-30 13:42:06 -04:00
# frozen_string_literal: true
require 'rails_helper'
2022-10-30 13:42:06 -04:00
RSpec.describe 'Homes', type: :request do
describe 'GET /index' do
it 'returns http success' do
get '/home/index'
expect(response).to have_http_status(:success)
end
end
end