mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 17:51:39 -05:00
10 lines
206 B
Ruby
10 lines
206 B
Ruby
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
|