Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Grippi <danielgrippi@Daniels-MacBook-Pro.local>2011-12-06 07:52:17 +0400
committerDaniel Grippi <danielgrippi@Daniels-MacBook-Pro.local>2011-12-06 07:53:03 +0400
commit0d41c9c5f3b4e7a451c603385305fb17779e813f (patch)
treeaeaad98b320d3f40a8180568f9390a9759cb4456 /features/step_definitions/web_steps.rb
parent548c22510249959b9e3c0ca29e042f15d2e178c8 (diff)
update gems -- mainly omniauth (we explicitly include omniauth libs now... much cleaner)
Diffstat (limited to 'features/step_definitions/web_steps.rb')
-rw-r--r--features/step_definitions/web_steps.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/features/step_definitions/web_steps.rb b/features/step_definitions/web_steps.rb
index d7a57da2e..0f16404da 100644
--- a/features/step_definitions/web_steps.rb
+++ b/features/step_definitions/web_steps.rb
@@ -4,7 +4,6 @@
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.
-
require 'uri'
require 'cgi'
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
@@ -64,7 +63,7 @@ end
When /^(?:|I )fill in the following(?: within "([^"]*)")?:$/ do |selector, fields|
with_scope(selector) do
fields.rows_hash.each do |name, value|
- When %{I fill in "#{name}" with "#{value}"}
+ step %{I fill in "#{name}" with "#{value}"}
end
end
end