]> zoso.dev Git - buffer.git/commitdiff
Added faillig slice test.
authorRomain Beauxis <toots@rastageeks.org>
Tue, 20 Aug 2013 15:02:21 +0000 (10:02 -0500)
committerRomain Beauxis <toots@rastageeks.org>
Tue, 20 Aug 2013 15:02:21 +0000 (10:02 -0500)
test/buffer.js

index b539bc3ab81b0241ec17c3303536c72d0be650c0..d4ddbaea20fdfb916d0815f429a37c6fd31e6ed7 100644 (file)
@@ -240,3 +240,9 @@ test('base64 ignore whitespace', function(t) {
   t.equal(buf.toString(), 'aoeu');
   t.end();
 });
+
+test('buffer.slice sets indexes', function (t) {
+  t.plan(1);
+  t.equal((new B('hallo')).slice(0, 5).toString(), 'hallo');
+  t.end();
+});