Added rspec testing. It should work, but doesn't for unknown reasons

This commit is contained in:
Gregory Ballantine
2025-08-12 15:35:46 -04:00
parent e1f5bd3950
commit 260d0d1268
5 changed files with 58 additions and 0 deletions

14
spec/routes/index_spec.rb Normal file
View File

@@ -0,0 +1,14 @@
require_relative '../spec_helper'
RSpec.describe IndexRoutes do
def app
IndexRoutes
end
it "Dashboard returns 200" do
get '/'
expect(last_response).to be_ok
end
end