Sha256: 02b99ddedfea4c52b97189b6f289ef6e0eb51fed2a9406e2c791abdee748ad51
Contents?: true
Size: 830 Bytes
Versions: 20
Compression:
Stored size: 830 Bytes
Contents
RSpec.describe HTTP::Response::StringBody do subject(:body) { described_class.new "Hello, World!" } it "has the content" do expect(subject.to_s).to eq "Hello, World!" end context "when body empty" do subject(:body) { described_class.new "" } it "returns responds to empty? with true" do expect(subject).to be_empty end end describe "#readpartial" do context "with size given" do it "returns only that amount" do expect(body.readpartial(4)).to eq "Hell" end end context "without size given" do it "returns parts of the full content" do expect(body.readpartial).to eq "Hello, World!" end end end describe "#each" do it "yields contents" do expect { |b| body.each(&b) }.to yield_with_args "Hello, World!" end end end
Version data entries
20 entries across 20 versions & 1 rubygems