-
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
提出物個別ページのメンター用サイドカラムに提出物一覧を追加した #5347
Conversation
1.日報個別ページのサイドカラムの仕様に合わせた
6fbb463
to
a723fb5
Compare
@keiz1213 見た目確認しました!このままで大丈夫ですー👍 |
@Nabegon |
@@ -421,13 +421,15 @@ class ProductsTest < ApplicationSystemTestCase | |||
assert_text '直近の日報' | |||
assert_text 'プラクティスメモ' | |||
assert_text 'ユーザーメモ' | |||
assert_selector '#side-tabs-nav-4', text: '提出物' |
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.
ここだけ、assert_selector '#side-tabs-nav-4', text: '提出物'
の書き方をしているのが気になりました!自分の環境でassert_text '提出物'
でテストを実行して問題はありませんでした。何か理由がない場合、assert_text '直近の日報'
などのようにassert_text '提出物'
で書いた方がいいかな?と思ったのですが、いかがでしょうか🙏
students can not see block for mentors
のテストも同様です。
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.
@Nabegon
とても難しそうなissueをやられてる中お時間をさいていただきありがとうございます!🙏
確かにこちらの書き方は不自然だな〜と自分でも思ってました😅
アサーションをassert_text '提出物'
ではなくassert_selector '#side-tabs-nav-4', text: '提出物'
にした理由としましては、このページにはサイドカラムのタブ以外にも提出物
というテキストが存在するため、それとスコープを分ける目的でこのアサーションにしました。
試しに、assert_selector '#side-tabs-nav-4', text: '提出物'
をassert_text '提出物'
に変えて、サイドカラムのタブの文言をていしゅつぶつ
にしてテストしてみたところテストが通ってしまい、テストの趣旨とは外れた結果となってしまいました。
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.
@keiz1213 さん、ご教示いただきありがとうございます!なるほどです、提出物という文言があるためにassert_text '提出物'
だけでは不十分なのですね。なぜassert_selector '#side-tabs-nav-4', text: '提出物'
と書いているのかについて理解できました🙏
@keiz1213 さん、お疲れ様です!時間かかってしまいすみませんでした💦 |
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.
テストの書き方の件、ご教示いただきありがとうございました!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
概要
メンターでログインして提出物個別ページにアクセスした時に表示されるサイドカラムに
提出物
タブを追加した。備考
提出物
タブが有り、こちらを参考にした。変更確認方法
feature/add-products-tab-for-mentor
をローカルに取り込むrails s
で立ち上げるmentormentaro
でログインする変更前
変更後
提出物タブをクリックした後