Sha256: 31c9ec1c4733b3f9b97c4b09527a685a3b905a21b4b548518709453ad965cb73

Contents?: true

Size: 464 Bytes

Versions: 3

Compression:

Stored size: 464 Bytes

Contents

require 'spec_helper'

describe SSLScan::Scanner do

  subject { SSLScan::Scanner.new('google.com', 443) }

  # attr_accessors
  it { should respond_to(:host) }
  it { should respond_to(:port) }
  it { should respond_to(:timeout) }
  it { should respond_to(:context) }

  # attr_readers
  it { should respond_to(:supported_versions) }
  it { should respond_to(:peer_supported_versions) }
  it { should respond_to(:results) }
  it { should respond_to(:sslv2) }

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ssl_scan-0.0.6 spec/lib/ssl_scan/scanner_spec.rb
ssl_scan-0.0.5 spec/lib/ssl_scan/scanner_spec.rb
ssl_scan-0.0.4 spec/lib/ssl_scan/scanner_spec.rb