私は cucumber を初めて使用します。このコード (エラーは含まれていません) を完全に削除する方法を教えてください。
when /^the user page$/
users_path
when /^the review page$/
reviews_path
私は次のような正規表現を使用しようとしました
when /^the (.+) page$/
$1.to_s+'s_path'
しかし、明らかにそれは間違っています。前もって感謝します!
解決策(aledalgrandeによる回答に基づく):
when /^the (.+) page$/
send("#{$1}s_path")