11 lines
267 B
Ruby
11 lines
267 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Home" do
|
|
it "shows the placeholder landing page" do
|
|
visit root_path
|
|
|
|
expect(page).to have_content("Car Tracker")
|
|
expect(page).to have_content("Vehicle maintenance and fuel tracking will be added here.")
|
|
end
|
|
end
|