Planned and executed phase001

This commit is contained in:
2026-09-13 21:46:57 -06:00
parent ff0a306668
commit 9793cd08bc
22 changed files with 695 additions and 20 deletions
+12
View File
@@ -0,0 +1,12 @@
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