Sha256: 884364259ff930b3e76d698d8295318cdb1d9658908d654da647363402f91e36
Contents?: true
Size: 463 Bytes
Versions: 20
Compression:
Stored size: 463 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe Rdkafka::Admin::CreateTopicReport do subject { Rdkafka::Admin::CreateTopicReport.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
20 entries across 20 versions & 2 rubygems