Sha256: 9a97f4366207e97438fcb539a3ddebed01b30943e8d513efb94f3c45bd626be0
Contents?: true
Size: 440 Bytes
Versions: 53
Compression:
Stored size: 440 Bytes
Contents
# frozen_string_literal: true describe Rdkafka::Admin::DeleteTopicReport do subject { Rdkafka::Admin::DeleteTopicReport.new( FFI::MemoryPointer.from_string("error string"), FFI::MemoryPointer.from_string("result name") )} it "should get the error string" do expect(subject.error_string).to eq("error string") end it "should get the result name" do expect(subject.result_name).to eq("result name") end end
Version data entries
53 entries across 53 versions & 2 rubygems