以下のコードはキュウリのステップ定義に引数を渡します:
Then /^I should see a message "([^\"]*)"$/ do |arg1|
page.should have_content (arg1)
end
複数の引数を渡す方法を教えてください。
以下のコードはキュウリのステップ定義に引数を渡します:
Then /^I should see a message "([^\"]*)"$/ do |arg1|
page.should have_content (arg1)
end
複数の引数を渡す方法を教えてください。