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

Commit

Permalink
Test: make desriptions more confident
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle committed Nov 10, 2023
1 parent 81c6728 commit 7988b0c
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 7988b0c

Please sign in to comment.