]> zoso.dev Git - buffer.git/commitdiff
add failing test for array of ints
authorDaniel Cousens <github@dcousens.com>
Sat, 24 May 2014 09:32:09 +0000 (19:32 +1000)
committerDaniel Cousens <github@dcousens.com>
Sat, 24 May 2014 09:32:09 +0000 (19:32 +1000)
test/basic.js

index 48ee29c5ae8663a4050e154b1f19befdc7a67a78..53994fd8cfbf98cacf3f9d9965bd59f7d33f1d33 100644 (file)
@@ -9,6 +9,14 @@ test('new buffer from array', function (t) {
   t.end()
 })
 
+test('new buffer from array w/ negatives', function (t) {
+  t.equal(
+    new B([-1, -2, -3]).toString('hex'),
+    'fffefd'
+  )
+  t.end()
+})
+
 test('new buffer from string', function (t) {
   t.equal(
     new B('hey', 'utf8').toString(),