1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
require 'spec_helper'
describe Net::NTLM::Field do
it_behaves_like 'a field', 'Foo', false
context 'with no size specified' do
let (:field_without_size) { Net::NTLM::Field.new({ :value => 'Foo', :active => true }) }
it 'should set size to 0 if not active' do
expect(field_without_size.size).to eq(0)
end
it 'should return 0 if active but no size specified' do
field_without_size.active = true
expect(field_without_size.size).to eq(0)
end
end
context 'with a size specified' do
let (:field_with_size) { Net::NTLM::Field.new({ :value => 'Foo', :active => true, :size => 100 }) }
it 'should return the size provided in the initialize options if active' do
expect(field_with_size.size).to eq(100)
end
it 'should still return 0 if not active' do
field_with_size.active = false
expect(field_with_size.size).to eq(0)
end
end
end
|