projects
/
buffer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fdadd6
)
add failing test for array of ints
author
Daniel Cousens
<github@dcousens.com>
Sat, 24 May 2014 09:32:09 +0000
(19:32 +1000)
committer
Daniel Cousens
<github@dcousens.com>
Sat, 24 May 2014 09:32:09 +0000
(19:32 +1000)
test/basic.js
patch
|
blob
|
history
diff --git
a/test/basic.js
b/test/basic.js
index 48ee29c5ae8663a4050e154b1f19befdc7a67a78..53994fd8cfbf98cacf3f9d9965bd59f7d33f1d33 100644
(file)
--- a/
test/basic.js
+++ b/
test/basic.js
@@
-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(),