2011-07-15 6 views
0
# acceptance/users_spec.rb 
page.should have_content 'Włosy' 
page.should have_content 'Oczy' 
page.should have_content 'Wzrost' 
page.should have_content 'Waga' 
page.should have_content 'Biust' 
page.should have_content 'Biustonosz' 
page.should have_content 'Talia' 
page.should have_content 'Biodra' 
page.should have_content 'Ubranie' 
page.should have_content 'Obuwie' 
page.should have_content 'Zakres pracy' 
page.should have_content 'Preferowany region pracy' 
page.should have_content 'Języki' 
page.should have_content 'O sobie' 
page.should have_content 'Twoja strona WWW' 
page.should have_content 'Numer Gadu-Gadu' 
page.should have_content 'Kursy, szkolenia' 
page.should have_content 'Referencje' 

このコードを改善できるかどうかを知りたいと思います。私はrspecsteakを使用しています。カピバラのコードを飲む機会はありますか?

答えて

2

あなたのテストでは、過剰なテストが行​​われる可能性があります。同じコードでこれらのアイテムが生成されている場合は、コードの1つまたは2つをテストしてコードが正しく動作することを確認できます。

しかし、そうでない場合は、あなたが行うことができます:

['Włosy', 'Oczy', .....].each { |item| page.should have_content(item) } 
関連する問題