Sha256: b07a93ddad1e5c1a911cba651c158ebdb88a8a8560e63a28318690a60f840029
Contents?: true
Size: 803 Bytes
Versions: 51
Compression:
Stored size: 803 Bytes
Contents
RSpec.describe RubySMB::Dcerpc::Winreg::RpcHkey do it 'is NdrContextHandle subclass' do expect(described_class).to be < RubySMB::Dcerpc::Ndr::NdrContextHandle end end RSpec.describe RubySMB::Dcerpc::Winreg::CloseKeyRequest do subject(:packet) { described_class.new } it { is_expected.to respond_to :hkey } it { is_expected.to respond_to :opnum } it 'is little endian' do expect(described_class.fields.instance_variable_get(:@hints)[:endian]).to eq :little end describe '#hkey' do it 'is a RpcHkey structure' do expect(packet.hkey).to be_a RubySMB::Dcerpc::Winreg::RpcHkey end end describe '#initialize_instance' do it 'sets #opnum to REG_CLOSE_KEY constant' do expect(packet.opnum).to eq(RubySMB::Dcerpc::Winreg::REG_CLOSE_KEY) end end end
Version data entries
51 entries across 51 versions & 1 rubygems