]> zoso.dev Git - buffer.git/commitdiff
put indexing into its own test
authorJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 17:32:57 +0000 (10:32 -0700)
committerJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 17:32:57 +0000 (10:32 -0700)
test/buffer.js
test/indexes.js [new file with mode: 0644]

index bbb0c5bffabeafa0d8cc99871192ce2b320339c2..77e43494c05f0a349e93eff55ec139850d319fed 100644 (file)
@@ -216,19 +216,3 @@ test("fill", function(t) {
     t.equal(b1.toString('hex'), b2.toString('hex'));
     t.end();
 });
-
-test("indexes from a string", 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);
-});
-
-test("indexes from an array", function(t) {
-    t.plan(3);
-    var buf = new buffer.Buffer([ 97, 98, 99 ]);
-    t.equal(buf[0], 97);
-    t.equal(buf[1], 98);
-    t.equal(buf[2], 99);
-});
diff --git a/test/indexes.js b/test/indexes.js
new file mode 100644 (file)
index 0000000..10cb692
--- /dev/null
@@ -0,0 +1,18 @@
+var B = require('../index.js').Buffer;
+var test = require('tap').test;
+
+test("indexes from a string", function(t) {
+    t.plan(3);
+    var buf = new B('abc');
+    t.equal(buf[0], 97);
+    t.equal(buf[1], 98);
+    t.equal(buf[2], 99);
+});
+
+test("indexes from an array", function(t) {
+    t.plan(3);
+    var buf = new B([ 97, 98, 99 ]);
+    t.equal(buf[0], 97);
+    t.equal(buf[1], 98);
+    t.equal(buf[2], 99);
+});