Sha256: fc810714a022c393f20cf358337c8df3b07e6eec6ad43b5d8dd791e2ce808169
Contents?: true
Size: 780 Bytes
Versions: 64
Compression:
Stored size: 780 Bytes
Contents
require 'spec_helper' RSpec.describe RubySMB::SMB2::Packet::TreeDisconnectResponse do subject(:packet) { described_class.new } it { is_expected.to respond_to :smb2_header } it { is_expected.to respond_to :structure_size } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end describe '#smb2_header' do subject(:header) { packet.smb2_header } it 'is a standard SMB Header' do expect(header).to be_a RubySMB::SMB2::SMB2Header end it 'should have the command set to SMB_COM_NEGOTIATE' do expect(header.command).to eq RubySMB::SMB2::Commands::TREE_DISCONNECT end it 'should have the response flag set' do expect(header.flags.reply).to eq 1 end end end
Version data entries
64 entries across 64 versions & 1 rubygems