]> zoso.dev Git - buffer.git/commitdiff
failing test for array indexes
authorJames Halliday <mail@substack.net>
Sat, 16 Mar 2013 19:09:40 +0000 (12:09 -0700)
committerJames Halliday <mail@substack.net>
Sat, 16 Mar 2013 19:09:40 +0000 (12:09 -0700)
test/buffer.js

index 0255f948e7082a77c395c6074e41e31f94449737..f0a3764f53ad92f91aa5e019ea660f1dabb41779 100644 (file)
@@ -215,4 +215,12 @@ test("fill", function(t) {
     b2.fill(2);
     t.equal(b1.toString('hex'), b2.toString('hex'));
     t.end();
-})
+});
+
+test("[] indexes", function(t) {
+    t.plan(3);
+    var buf = new buffer.Buffer('abc');
+    t.equal(buf[0], 97);
+    t.equal(buf[1], 98);
+    t.equal(buf[2], 99);
+});