]> zoso.dev Git - buffer.git/commitdiff
tests: remove unneeded t.plan() calls
authorFeross Aboukhadijeh <feross@feross.org>
Tue, 8 Apr 2014 08:00:12 +0000 (01:00 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Tue, 8 Apr 2014 08:00:12 +0000 (01:00 -0700)
all tests are synchronous

test/basic.js
test/buffer.js
test/indexes.js
test/is-buffer.js
test/is-encoding.js
test/utf16.js

index ffb2457deafb88a8e12da284300ecc9154923032..5a1b7bad6501275da26950b8263b27123adb0cdb 100644 (file)
@@ -10,7 +10,6 @@ test('new buffer from array', function (t) {
 })
 
 test('new buffer from string', function (t) {
-  t.plan(1)
   t.equal(
     new B('hey', 'utf8').toString(),
     'hey'
@@ -138,7 +137,6 @@ test('buffer toArrayBuffer()', function (t) {
 })
 
 test('buffer toJSON()', function (t) {
-  t.plan(1)
   var data = [1, 2, 3, 4]
   t.deepEqual(
     new B(data).toJSON(),
@@ -148,10 +146,8 @@ test('buffer toJSON()', function (t) {
 })
 
 test('buffer copy example', function (t) {
-  t.plan(1)
-
-  buf1 = new B(26)
-  buf2 = new B(26)
+  var buf1 = new B(26)
+  var buf2 = new B(26)
 
   for (var i = 0 ; i < 26 ; i++) {
     buf1[i] = i + 97; // 97 is ASCII a
index 9fdfea1e1838545bd89210ddd6019641d5112391..2f306c610cc8a9747cd83254eaedd7e6a6f6a19c 100644 (file)
@@ -26,22 +26,20 @@ test('utf8 to utf8', function (t) {
 })
 
 test('utf16le to utf16', function (t) {
-    t.plan(1);
     t.equal(
         new B(new B('abcd', 'utf8').toString('utf16le'), 'utf16le').toString('utf8'),
         'abcd'
-    );
-    t.end();
-});
+    )
+    t.end()
+})
 
 test('utf16le to hex', function (t) {
-    t.plan(1);
     t.equal(
         new B('abcd', 'utf16le').toString('hex'),
         '6100620063006400'
-    );
-    t.end();
-});
+    )
+    t.end()
+})
 
 test('ascii buffer to base64', function (t) {
   t.equal(
@@ -197,7 +195,6 @@ test('hex of write{Uint,Int}{8,16,32}{LE,BE} with overflow', function (t) {
 })
 
 test('concat() a varying number of buffers', function (t) {
-  t.plan(5)
   var zero = []
   var one  = [ new B('asdf') ]
   var long = []
@@ -217,7 +214,6 @@ test('concat() a varying number of buffers', function (t) {
 })
 
 test('fill', function(t) {
-  t.plan(1)
   var b = new B(10)
   b.fill(2)
   t.equal(b.toString('hex'), '02020202020202020202')
@@ -225,7 +221,6 @@ test('fill', function(t) {
 })
 
 test('copy() empty buffer with sourceEnd=0', function (t) {
-  t.plan(1)
   var source = new B([42])
   var destination = new B([43])
   source.copy(destination, 0, 0, 0)
@@ -234,7 +229,6 @@ test('copy() empty buffer with sourceEnd=0', function (t) {
 })
 
 test('copy() after slice()', function(t) {
-  t.plan(1)
   var source = new B(200)
   var dest = new B(200)
   var expected = new B(200)
@@ -242,7 +236,7 @@ test('copy() after slice()', function(t) {
     source[i] = i
     dest[i] = 0
   }
-  
+
   source.slice(2).copy(dest)
   source.copy(expected, 0, 2)
   t.deepEqual(dest, expected)
@@ -250,7 +244,6 @@ test('copy() after slice()', function(t) {
 })
 
 test('base64 ignore whitespace', function(t) {
-  t.plan(1)
   var text = '\n   YW9ldQ==  '
   var buf = new B(text, 'base64')
   t.equal(buf.toString(), 'aoeu')
@@ -258,7 +251,6 @@ test('base64 ignore whitespace', function(t) {
 })
 
 test('buffer.slice sets indexes', function (t) {
-  t.plan(1)
   t.equal((new B('hallo')).slice(0, 5).toString(), 'hallo')
   t.end()
 })
@@ -271,7 +263,6 @@ test('buffer.slice out of range', function (t) {
 })
 
 test('base64 strings without padding', function (t) {
-  t.plan(1)
   t.equal((new B('YW9ldQ', 'base64').toString()), 'aoeu')
   t.end()
 })
index 88879c86c5a3616f73bf873f4d4afa9d8b641182..783bfa55681e1dad678fad9fd578679be7aab0d2 100644 (file)
@@ -2,23 +2,22 @@ var B = require('../').Buffer
 var test = require('tape')
 
 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)
+  t.end()
 })
 
 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)
+  t.end()
 })
 
 test('set then modify indexes from an array', function(t) {
-  t.plan(4)
   var buf = new B([ 97, 98, 99 ])
   t.equal(buf[2], 99)
   t.equal(buf.toString(), 'abc')
@@ -26,4 +25,5 @@ test('set then modify indexes from an array', function(t) {
   buf[2] += 10
   t.equal(buf[2], 109)
   t.equal(buf.toString(), 'abm')
+  t.end()
 })
index b3f494d304ba205bad42459a190bfa0a36d3d3cf..8fba0761246474e0057f2d7ac79bb77c6d4c81e3 100644 (file)
@@ -2,7 +2,6 @@ var B = require('../').Buffer
 var test = require('tape')
 
 test('Buffer.isBuffer', function (t) {
-  t.plan(3)
   t.equal(B.isBuffer(new B('hey', 'utf8')), true)
   t.equal(B.isBuffer(new B([1, 2, 3], 'utf8')), true)
   t.equal(B.isBuffer('hey'), false)
index ff91cd88645bd8d37b5d48dc226aae05f2c5eeee..b40843491b2a87b93cc21054eefd1e2af6f8c1ea 100644 (file)
@@ -2,7 +2,6 @@ var B = require('../').Buffer
 var test = require('tape')
 
 test('Buffer.isEncoding', function (t) {
-  t.plan(3)
   t.equal(B.isEncoding('HEX'), true)
   t.equal(B.isEncoding('hex'), true)
   t.equal(B.isEncoding('bad'), false)
index d33c2d334c6df17b2ff87d168da4e786042887a4..d34f72beab464e250b4a7a09c5c4b8c85747e51a 100644 (file)
@@ -2,7 +2,6 @@ var B = require('../').Buffer
 var test = require('tape')
 
 test('detect utf16 surrogate pairs', function(t) {
-  t.plan(1)
   var text = '\uD83D\uDE38' + '\uD83D\uDCAD' + '\uD83D\uDC4D'
   var buf = new B(text)
   t.equal(text, buf.toString())
@@ -10,7 +9,6 @@ test('detect utf16 surrogate pairs', function(t) {
 })
 
 test('throw on orphaned utf16 surrogate lead code point', function(t) {
-  t.plan(1)
   var text = '\uD83D\uDE38' + '\uD83D' + '\uD83D\uDC4D'
   var err
   try {
@@ -23,7 +21,6 @@ test('throw on orphaned utf16 surrogate lead code point', function(t) {
 })
 
 test('throw on orphaned utf16 surrogate trail code point', function(t) {
-  t.plan(1)
   var text = '\uD83D\uDE38' + '\uDCAD' + '\uD83D\uDC4D'
   var err
   try {