Skip to content

Commit e2ec172

Browse files
committed
Support buffer keyword argument to Array#pack
* Fixes oracle/truffleruby#3559
1 parent f015bce commit e2ec172

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

core/array/pack/buffer_spec.rb

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@
2828
TypeError, "buffer must be String, not Array")
2929
end
3030

31+
it "raise FrozenError if buffer is frozen" do
32+
-> { [65].pack("c", buffer: "frozen-string".freeze) }.should raise_error(FrozenError)
33+
end
34+
35+
it "preserves the encoding of the given buffer" do
36+
buffer = ''.encode(Encoding::ISO_8859_1)
37+
[65, 66, 67].pack("ccc", buffer: buffer)
38+
buffer.encoding.should == Encoding::ISO_8859_1
39+
end
40+
3141
context "offset (@) is specified" do
3242
it 'keeps buffer content if it is longer than offset' do
3343
n = [ 65, 66, 67 ]

0 commit comments

Comments
 (0)