Remove Capybara::TimeoutError

It's no longer necessary, we rely on Ruby's Timeout::Error instead
This commit is contained in:
Jonathan del Strother 2012-12-26 15:47:18 +00:00
parent 13bca79d45
commit fce44de66e
1 changed files with 1 additions and 2 deletions

View File

@ -12,9 +12,8 @@ module Capybara
class FileNotFound < CapybaraError; end
class UnselectNotAllowed < CapybaraError; end
class NotSupportedByDriverError < CapybaraError; end
class TimeoutError < CapybaraError; end
class LocateHiddenElementError < CapybaraError; end
class InfiniteRedirectError < TimeoutError; end
class InfiniteRedirectError < CapybaraError; end
class << self
attr_accessor :asset_root, :app_host, :run_server, :default_host, :always_include_port