Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.

Test: make descriptions more confident #73

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions spec/async/io/stream_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
expect(result.encoding).to be == Encoding::BINARY
end

it "should read everything" do
it "reads everything" do
io.write "Hello World"
io.seek(0)

Expand All @@ -172,7 +172,7 @@
expect(subject).to be_eof
end

it "should read only the amount requested" do
it "reads only the amount requested" do
io.write "Hello World"
io.seek(0)

Expand All @@ -185,7 +185,7 @@
expect(subject).to be_eof
end

it "should peek everything" do
it "peeks everything" do
io.write "Hello World"
io.seek(0)

Expand All @@ -196,7 +196,7 @@
expect(subject).to be_eof
end

it "should peek only the amount requested" do
it "peeks only the amount requested" do
io.write "Hello World"
io.seek(0)

Expand Down