add specs for Bignum/NSNumber conversions

This commit is contained in:
Laurent Sansonetti
2012-09-13 15:50:40 +02:00
parent 4a1727db80
commit 36bdced966

View File

@@ -0,0 +1,6 @@
describe "Bignums" do
it "can be converted into NSNumber with 'long long' type" do
num = 1346543403000
NSNumber.numberWithLongLong(num).longLongValue.should == num
end
end