Skip to content

Commit

Permalink
デザインに合わせてテストを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
futa4095 committed Feb 2, 2023
1 parent b5f29a8 commit 8d6da63
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions test/system/questions_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -425,23 +425,19 @@ class QuestionsTest < ApplicationSystemTestCase
question = questions(:question7)
visit_with_auth question_path(question), 'kimura'

find('.page-nav__items').click_link 'OS X Mountain Lionをクリーンインストールする'
find('.page-nav').click_link 'OS X Mountain Lionをクリーンインストールする'
find('h1') { assert_text 'OS X Mountain Lionをクリーンインストールする' }
go_back

find('.page-nav__items').click_link 'どのエディターを使うのが良いでしょうか'
find('.page-nav').click_link 'どのエディターを使うのが良いでしょうか'
find('h1') { assert_text 'どのエディターを使うのが良いでしょうか' }
go_back

first('.page-nav__items .user-name a').click
find('h1') { assert_text 'komagata' }
go_back

find('.page-nav__items').click_link '全て見る'
find('.page-nav').click_link '全て見る'
find('.choices__item') { assert_text 'OS X Mountain Lionをクリーンインストールする' }
go_back

within '.page-nav__items' do
within '.page-nav' do
assert_no_text question.title
assert_no_text 'wipテスト用の質問(wip中)'
end
Expand Down

0 comments on commit 8d6da63

Please sign in to comment.