feat: テスト自動化(#104) (#220)

#104

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #220
This commit was merged in pull request #220.
This commit is contained in:
2026-01-12 14:30:56 +09:00
parent 189175fe84
commit 622f47a856
9 changed files with 320 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
module TestRecords
def create_member_user!
User.create!(name: 'spec user',
inheritance_code: SecureRandom.hex(16),
role: 'member',
banned: false)
end
end