We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d565e89 commit 810a2f2Copy full SHA for 810a2f2
1 file changed
library/stringio/shared/read.rb
@@ -15,7 +15,7 @@
15
buffer.should == "example"
16
end
17
18
- guard -> { StringIO::VERSION < "3.1.1" } do
+ guard -> { StringIO::VERSION < "3.1.2" } do
19
it "does not preserve the encoding of the given buffer" do
20
buffer = ''.encode(Encoding::ISO_8859_1)
21
@io.send(@method, 7, buffer)
@@ -24,7 +24,7 @@
24
25
26
27
- guard -> { StringIO::VERSION >= "3.1.1" } do
+ guard -> { StringIO::VERSION >= "3.1.2" } do
28
it "preserves the encoding of the given buffer" do
29
30
0 commit comments