From 7ed5dea6de09a2df6898b2e8f5a112b4764c990d Mon Sep 17 00:00:00 2001 From: Ken Johnson Date: Tue, 6 Jan 2026 13:14:52 -0500 Subject: [PATCH] Remove empty Rails scaffold spec files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed 5 empty scaffold-generated spec files that provided no value: - spec/helpers/api/v1/users_helper_spec.rb - spec/helpers/password_resets_helper_spec.rb - spec/helpers/pay_helper_spec.rb - spec/models/pay_spec.rb - spec/views/password_resets/new.html.erb_spec.rb These files were: - Entirely commented out with Rails scaffold boilerplate - Contained no actual tests - Not referenced in wiki or documentation - Testing empty helper modules with no functionality This cleanup removes the last instances of commented-out `pending` statements found by git grep "pending " and reduces test file clutter. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- spec/helpers/api/v1/users_helper_spec.rb | 16 ---------------- spec/helpers/password_resets_helper_spec.rb | 16 ---------------- spec/helpers/pay_helper_spec.rb | 16 ---------------- spec/models/pay_spec.rb | 6 ------ spec/views/password_resets/new.html.erb_spec.rb | 6 ------ 5 files changed, 60 deletions(-) delete mode 100644 spec/helpers/api/v1/users_helper_spec.rb delete mode 100644 spec/helpers/password_resets_helper_spec.rb delete mode 100644 spec/helpers/pay_helper_spec.rb delete mode 100644 spec/models/pay_spec.rb delete mode 100644 spec/views/password_resets/new.html.erb_spec.rb diff --git a/spec/helpers/api/v1/users_helper_spec.rb b/spec/helpers/api/v1/users_helper_spec.rb deleted file mode 100644 index 8bda71a..0000000 --- a/spec/helpers/api/v1/users_helper_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -# frozen_string_literal: true -# require 'spec_helper' -# -# Specs in this file have access to a helper object that includes -# the Api::V1::UsersHelper. For example: -# -# describe Api::V1::UsersHelper do -# describe "string concat" do -# it "concats two strings with spaces" do -# expect(helper.concat_strings("this","that")).to eq("this that") -# end -# end -# end -# describe Api::V1::UsersHelper do -# pending "add some examples to (or delete) #{__FILE__}" -# end diff --git a/spec/helpers/password_resets_helper_spec.rb b/spec/helpers/password_resets_helper_spec.rb deleted file mode 100644 index e1e5f1f..0000000 --- a/spec/helpers/password_resets_helper_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -# frozen_string_literal: true -# require 'spec_helper' -# -# Specs in this file have access to a helper object that includes -# the PasswordResetsHelper. For example: -# -# describe PasswordResetsHelper do -# describe "string concat" do -# it "concats two strings with spaces" do -# expect(helper.concat_strings("this","that")).to eq("this that") -# end -# end -# end -# describe PasswordResetsHelper do -# pending "add some examples to (or delete) #{__FILE__}" -# end diff --git a/spec/helpers/pay_helper_spec.rb b/spec/helpers/pay_helper_spec.rb deleted file mode 100644 index a551f8d..0000000 --- a/spec/helpers/pay_helper_spec.rb +++ /dev/null @@ -1,16 +0,0 @@ -# frozen_string_literal: true -# require 'spec_helper' -# -# Specs in this file have access to a helper object that includes -# the PayHelper. For example: -# -# describe PayHelper do -# describe "string concat" do -# it "concats two strings with spaces" do -# expect(helper.concat_strings("this","that")).to eq("this that") -# end -# end -# end -# describe PayHelper do -# pending "add some examples to (or delete) #{__FILE__}" -# end diff --git a/spec/models/pay_spec.rb b/spec/models/pay_spec.rb deleted file mode 100644 index 5b3ad29..0000000 --- a/spec/models/pay_spec.rb +++ /dev/null @@ -1,6 +0,0 @@ -# frozen_string_literal: true -# require 'spec_helper' -# -# describe Pay do -# pending "add some examples to (or delete) #{__FILE__}" -# end diff --git a/spec/views/password_resets/new.html.erb_spec.rb b/spec/views/password_resets/new.html.erb_spec.rb deleted file mode 100644 index d86c59d..0000000 --- a/spec/views/password_resets/new.html.erb_spec.rb +++ /dev/null @@ -1,6 +0,0 @@ -# frozen_string_literal: true -# require 'spec_helper' -# -# describe "password_resets/new.html.erb" do -# pending "add some examples to (or delete) #{__FILE__}" -# end