Sha256: 2650178f166eeccea7289c6bf703518deca114c0beb7bddda359fc2ba004e379

Contents?: true

Size: 314 Bytes

Versions: 17

Compression:

Stored size: 314 Bytes

Contents

module Inferno
  module DSL
    module TCPExceptionHandler
      def tcp_exception_handler(&block)
        block.call
      rescue Faraday::ConnectionFailed, SocketError => e
        e.message.include?('Failed to open TCP') ? raise(Exceptions::AssertionException, e.message) : raise(e)
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
inferno_core-0.4.4 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.3 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.2 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.2.pre lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.1 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.1.pre2 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.1.pre lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.4.0 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.12 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.11 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.10 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.9 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.8 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.7 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.6 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.5 lib/inferno/dsl/tcp_exception_handler.rb
inferno_core-0.3.4 lib/inferno/dsl/tcp_exception_handler.rb