Given /^I have mounted "([^"]*)" at "([^"]*)" with these options:$/ do |application, path, options| Noumenon.mount(path, application.constantize, options.rows_hash.symbolize_keys) Capybara.app = Noumenon.server end Given /^I have mounted "([^"]*)" at "([^"]*)"$/ do |application, path| Noumenon.mount(path, application.constantize) Capybara.app = Noumenon.server end