标签: ruby-on-rails cucumber capybara
我希望在黄瓜方案之一中使用用户提供的值更新表格。步骤为:
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)
或它适用于所有表格的东西。