Remove empty Rails scaffold spec files

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 <noreply@anthropic.com>
This commit is contained in:
Ken Johnson
2026-01-06 13:14:52 -05:00
parent ba4b283fea
commit 7ed5dea6de
5 changed files with 0 additions and 60 deletions
-6
View File
@@ -1,6 +0,0 @@
# frozen_string_literal: true
# require 'spec_helper'
#
# describe Pay do
# pending "add some examples to (or delete) #{__FILE__}"
# end