Employer form mostly working with persist to db

This commit is contained in:
Jason Jordan
2025-12-10 13:22:33 -05:00
parent 78ce415b94
commit 0464ba8929
68 changed files with 3071 additions and 365 deletions
+46
View File
@@ -0,0 +1,46 @@
require 'rails_helper'
RSpec.describe "IdCardEmployers", type: :request do
describe "GET /index" do
it "returns http success" do
get "/id_card_employers/index"
expect(response).to have_http_status(:success)
end
end
describe "GET /show" do
it "returns http success" do
get "/id_card_employers/show"
expect(response).to have_http_status(:success)
end
end
describe "GET /new" do
it "returns http success" do
get "/id_card_employers/new"
expect(response).to have_http_status(:success)
end
end
describe "GET /create" do
it "returns http success" do
get "/id_card_employers/create"
expect(response).to have_http_status(:success)
end
end
describe "GET /edit" do
it "returns http success" do
get "/id_card_employers/edit"
expect(response).to have_http_status(:success)
end
end
describe "GET /update" do
it "returns http success" do
get "/id_card_employers/update"
expect(response).to have_http_status(:success)
end
end
end