キュウリの機能の 1 つに、次のステップがあります。
Then the director of "Alien" should be "Ridley Scott"
そして、次のようにステップ定義を作成しました
Then /^the director of "([^"]*)" should be "([^"]*)"$/ do |arg1, arg2|
Movie.find_by_title(arg1) == Movie.find_by_director(arg2)
end
これはテストに合格しますが、それが本当に正しいとは思いません。適切な機能を実装するための提案はありますか?