Sha256: 84600da280b5c89e3df9aefe20f80bf9ccfde19b8e8f6198d06c35f70dd7777f

Contents?: true

Size: 702 Bytes

Versions: 4

Compression:

Stored size: 702 Bytes

Contents

require 'spec_helper'

describe Net::NTLM::VERSION do

  it 'should contain an integer value for Major Version' do
    Net::NTLM::VERSION::MAJOR.should be_an Integer
  end

  it 'should contain an integer value for Minor Version' do
    Net::NTLM::VERSION::MINOR.should be_an Integer
  end

  it 'should contain an integer value for Patch Version' do
    Net::NTLM::VERSION::TINY.should be_an Integer
  end

  it 'should contain an aggregate version string' do
    string = [
        Net::NTLM::VERSION::MAJOR,
        Net::NTLM::VERSION::MINOR,
        Net::NTLM::VERSION::TINY
    ].join('.')
    Net::NTLM::VERSION::STRING.should be_a String
    Net::NTLM::VERSION::STRING.should == string
  end
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/version_spec.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/version_spec.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rubyntlm-0.4.0/spec/lib/net/ntlm/version_spec.rb
rubyntlm-0.4.0 spec/lib/net/ntlm/version_spec.rb