Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
brynary committed Sep 19, 2009
1 parent 40d7f97 commit 042b416
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/webrat/adapters/rails.rb
Expand Up @@ -78,4 +78,4 @@ def response #:nodoc:
integration_session.response
end
end
end
end
2 changes: 1 addition & 1 deletion lib/webrat/integrations/merb.rb
Expand Up @@ -7,4 +7,4 @@ def request(uri, env = {})
end
end
end
end
end
2 changes: 1 addition & 1 deletion lib/webrat/integrations/selenium.rb
Expand Up @@ -8,4 +8,4 @@ module ActionController #:nodoc:
include Webrat::Selenium::Matchers
end
end
end
end
2 changes: 1 addition & 1 deletion lib/webrat/rspec-rails.rb
@@ -1,2 +1,2 @@
warn("Requiring 'webrat/rspec-rails' is deprecated. Please require 'webrat/integrations/rspec-rails' instead")
require "webrat/integrations/rspec-rails"
require "webrat/integrations/rspec-rails"
2 changes: 1 addition & 1 deletion lib/webrat/selenium/application_servers.rb
Expand Up @@ -2,4 +2,4 @@
require "webrat/selenium/application_servers/sinatra"
require "webrat/selenium/application_servers/merb"
require "webrat/selenium/application_servers/rails"
require "webrat/selenium/application_servers/external"
require "webrat/selenium/application_servers/external"
2 changes: 1 addition & 1 deletion lib/webrat/selenium/application_servers/external.rb
Expand Up @@ -23,4 +23,4 @@ def wait
end
end
end
end
end
4 changes: 2 additions & 2 deletions lib/webrat/selenium/selenium_rc_server.rb
Expand Up @@ -74,8 +74,8 @@ def fail

def stop
silence_stream(STDOUT) do
::Selenium::RemoteControl::RemoteControl.new("0.0.0.0",
Webrat.configuration.selenium_server_port,
::Selenium::RemoteControl::RemoteControl.new("0.0.0.0",
Webrat.configuration.selenium_server_port,
:timeout => 5).stop
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/webrat/selenium/silence_stream.rb
Expand Up @@ -15,4 +15,4 @@ def silence_stream(stream)
end
end
end
end
end
Expand Up @@ -77,4 +77,4 @@ class ButtonClickTest < ActionController::IntegrationTest
click_button "input_image_alt"
end

end
end
2 changes: 1 addition & 1 deletion spec/integration/rails/test/integration/fill_in_test.rb
Expand Up @@ -21,4 +21,4 @@ class FillInTest < ActionController::IntegrationTest
visit fields_path
fill_in "[Field]:", :with => "value"
end
end
end
2 changes: 1 addition & 1 deletion spec/integration/rails/test/integration/link_click_test.rb
Expand Up @@ -24,4 +24,4 @@ class LinkClickTest < ActionController::IntegrationTest
click_link "Link With (parens)"
assert_contain("Link:link_with_parens")
end
end
end
2 changes: 1 addition & 1 deletion spec/public/fill_in_spec.rb
Expand Up @@ -15,7 +15,7 @@
fill_in "User Text", :with => "filling text area"
click_button
end

it "should support multiline values" do
with_html <<-HTML
<html>
Expand Down
2 changes: 1 addition & 1 deletion spec/public/matchers/have_selector_spec.rb
Expand Up @@ -61,7 +61,7 @@
@body.should have_selector("li", :count => 4)
}.should raise_error(Spec::Expectations::ExpectationNotMetError)
end

it "should convert a string to an integer for count" do
@body.should have_selector("li", :count => "3")
end
Expand Down

0 comments on commit 042b416

Please sign in to comment.