mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-06 22:39:46 +08:00
11 lines
221 B
Ruby
11 lines
221 B
Ruby
describe "Strings containing null terminators" do
|
|
it "can be compiled and used" do
|
|
s = "\x00"
|
|
s.size.should == 1
|
|
s = "\x00\x00"
|
|
s.size.should == 2
|
|
s = "\x00\x00\x00"
|
|
s.size.should == 3
|
|
end
|
|
end
|