mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-24 04:46:05 +08:00
7 lines
184 B
Ruby
7 lines
184 B
Ruby
describe "Bignums" do
|
|
it "can be converted into NSNumber with 'long long' type" do
|
|
num = 1346543403000
|
|
NSNumber.numberWithLongLong(num).longLongValue.should == num
|
|
end
|
|
end
|