Sha256: e69e02eb2c25ddb33f026a6b73eb88e499d4d3be64a60e021b599452fcf2a372
Contents?: true
Size: 911 Bytes
Versions: 4
Compression:
Stored size: 911 Bytes
Contents
# encoding: UTF-8 require 'spec_helper' module ICU describe UCharPointer do it 'allocates enough memory for 16-bit characters' do UCharPointer.new(5).size.should == 10 end it 'builds a buffer from a string' do ptr = UCharPointer.from_string('abc') ptr.should be_a UCharPointer ptr.size.should == 6 ptr.read_array_of_uint16(3).should == [0x61, 0x62, 0x63] end it 'takes an optional capacity' do ptr = UCharPointer.from_string('abc', 5) ptr.size.should == 20 end describe 'converting to string' do let(:ptr) { UCharPointer.new(3).write_array_of_uint16 [0x78, 0x0, 0x79] } it 'returns the the entire buffer by default' do ptr.string.should == "x\0y" end it 'returns strings of the specified length' do ptr.string(0).should == "" ptr.string(2).should == "x\0" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ffi-icu-0.1.6 | spec/uchar_spec.rb |
ffi-icu-0.1.5 | spec/uchar_spec.rb |
ffi-icu-0.1.4 | spec/uchar_spec.rb |
ffi-icu-0.1.3 | spec/uchar_spec.rb |