-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test/helpers配下をテストファイルとして認識させた #8007
Conversation
お疲れ様です。レビューをお願いできますでしょうか。 よろしくお願いします。 |
@thmz337 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
すぐ終わりそうだったので、早速レビューさせていただきました🙏
動作確認としてはOKです!
ただ、レビューをしていてPRの作り方が気になったので、コメントしますね👌
PRのタイトル
「Bug/recognize as test file」というタイトルだと、何を行ったPRかが分かりにくいと感じました😢
もし私なら、やっていることを一言で表したいので、「test/helpers配下をテストファイルとして認識させた」にする気がします👀
是非他の方のPRタイトルも参考にしてみてください〜!
PRの概要
「test/helpers配下のファイルが、_test.rbで終わっていないため、テストファイルとして認識されていない。」だけだと、「なるほど。それで、このPRでは何をしたわけ...?」と突っ込まれる恐れがあるため、commitメッセージだけではなくPR概要で補足してあげると親切だと思います🙆♀️
丁寧に書くなら、今回やったことは
test/helpers
配下のファイル名を、_test.rb
の形にリネームしたtest/helpers
配下のテストをパスさせるためにテストファイルを修正
と書けそうです💪
Screenshot
変更前後でどこが変わったか分かりづらく感じました🤔
もし画像で示すなら、変更箇所を赤枠で囲むなどして目立たせるとよりよく伝わると思います👍
また、ターミナルの出力を示すなら、コピペで貼り付けた方がより見やすいと思います〜
Markdownで、「```」を使ってテキストを囲むと良さそうです!
テキスト
変更確認方法
凄く細かいことなので恐縮なのですが、
bin/rails test test/helpersを実行し、
と記述してあるのに、Screenshotの画像ではPARALLEL_WORKERS= 1 bin/rails test test/helpers
と矛盾しているのが気になりました💦
早速の確認ありがとうございました。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thmz337
修正ありがとうございます🙏
Approveさせていただきます。
お疲れ様です。確認よろしくお願いします。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させて頂きました。OKです〜🙆♂️
Issue
概要
test/helpers
配下のファイルが、_test.rb
で終わっていないため、テストファイルとして認識されていない。test/helpers
配下のファイル名を、_test.rb
の形にリネームした変更確認方法
bug/recognize-as-test-file
をローカルに取り込むbin/rails test test/helpers
を実行し、test/helpers
配下のファイル群がテストとして認識されていることを確認する。また、テストが通ることを確認する。Screenshot
変更前
変更後