Whitespace!

This commit is contained in:
Jonas Nicklas 2010-01-01 17:48:39 +01:00
parent 8241018282
commit 6a3abbe006
6 changed files with 35 additions and 39 deletions

View File

@ -22,7 +22,6 @@ class Capybara::Server
end
end
attr_reader :app, :port
def initialize(app)

View File

@ -12,7 +12,6 @@ module Capybara
end
def driver
@driver ||= case mode
when :rack_test
Capybara::Driver::RackTest.new(app)
@ -56,9 +55,7 @@ module Capybara
def drag(source_locator, target_locator)
source = locate(source_locator, "drag source '#{source_locator}' not found on page")
target = locate(target_locator, "drag target '#{target_locator}' not found on page")
source.drag_to(target)
end