キュウリのシナリオの 1 つでユーザーが指定した値でテーブルを更新する手順が必要です。手順は次のとおりです。
Given /^I Update the (.+) field of the (.+) table by setting it as (.+)$/ do |col_name, table_name, value|
end
私は何かが欲しい
table_name.update_column('#{col_name}',value)
または、すべてのテーブルで機能するもの。