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

Commit 7988b0c

Browse files
committed
Test: make desriptions more confident
1 parent 81c6728 commit 7988b0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/async/io/stream_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
expect(result.encoding).to be == Encoding::BINARY
163163
end
164164

165-
it "should read everything" do
165+
it "reads everything" do
166166
io.write "Hello World"
167167
io.seek(0)
168168

@@ -172,7 +172,7 @@
172172
expect(subject).to be_eof
173173
end
174174

175-
it "should read only the amount requested" do
175+
it "reads only the amount requested" do
176176
io.write "Hello World"
177177
io.seek(0)
178178

@@ -185,7 +185,7 @@
185185
expect(subject).to be_eof
186186
end
187187

188-
it "should peek everything" do
188+
it "peeks everything" do
189189
io.write "Hello World"
190190
io.seek(0)
191191

@@ -196,7 +196,7 @@
196196
expect(subject).to be_eof
197197
end
198198

199-
it "should peek only the amount requested" do
199+
it "peeks only the amount requested" do
200200
io.write "Hello World"
201201
io.seek(0)
202202

0 commit comments

Comments
 (0)