次の Cucumber シナリオがあります。
Scenario: find vegetable with same color
Given I am on the details page for "Potato"
私は web_step をピギーバックできるので:
Given /^(?:|I )am on (.+)$/ do |page_name|
visit path_to(page_name)
end
私がしなければならないのは、私が行ったpaths.rbファイルです:
def path_to(page_name)
case page_name
when /^the edit page for "(.*)"$/
edit_vegetable_path(Vegetable.find_by_name($1))
when /^the details page for "(.*)"$/
vegetable_path(Vegetable.find_by_title($1))
ただし、キュウリを実行すると、次のエラーが発生します。
Given I am on the details page for "Potato" # features/step_definitions/web_steps.rb:44
undefined method `strftime' for nil:NilClass (ActionView::Template::Error)
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/whiny_nil.rb:48:in `method_missing'
./app/views/vegetables/show.html.haml:14:in `_app_views_vegetables_show_html_haml___295190995_93073700'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_view/template.rb:144:in `block in render'
/usr/local/lib/ruby/gems/1.9.1/gems/activesupport-3.1.0/lib/active_support/notifications.rb:55:in `instrument'
/usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.1.0/lib/action_view/template.rb:142:in `render'
等...
edit_vegetable_path が機能する理由はわかりませんが、vegetable_path は機能しません。特定の野菜ページを (テストとして) ハードコーディングしようとしたところ、同じエラーが発生しました。
when /^the details page for "(.*)"$/
'/vegetables/1'
この時点で、この問題をさらにデバッグする方法がわかりません。任意の支援をいただければ幸いです。