You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor: Convert tests from broothie/test to testify (#16)
* Convert tests from broothie/test to testify
- Replace all instances of broothie/test with stretchr/testify
- Use assert.* for test assertions and require.* for must-pass conditions
- Update go.mod and go.sum to remove broothie/test dependency and add testify
- Maintain existing test logic and behavior
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Fix testify usage: use assert.* for most assertions, require.* only for Must functions
- Convert most require.NoError back to assert.NoError
- Keep require.NoError only for the original test.MustNoError call
- Maintain proper distinction between assertions and requirements
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Remove unused require imports from test files
---------
Co-authored-by: Claude <noreply@anthropic.com>
0 commit comments