13 lines
254 B
Ruby
13 lines
254 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Home" do
|
|
describe "GET /" do
|
|
it "returns a successful response" do
|
|
get root_path
|
|
|
|
expect(response).to have_http_status(:ok)
|
|
expect(response.body).to include("Car Tracker")
|
|
end
|
|
end
|
|
end
|