]> zoso.dev Git - buffer.git/commitdiff
split ascending/descending copy tests
authorDaniel Cousens <github@dcousens.com>
Thu, 6 Aug 2015 12:11:11 +0000 (22:11 +1000)
committerDaniel Cousens <github@dcousens.com>
Thu, 6 Aug 2015 12:11:11 +0000 (22:11 +1000)
test/methods.js

index be92568499cf47d8a2dd7f5ee9c10feebf65a66b..f9337e1b1ae6035da984c48d760f453a7a2bfd88 100644 (file)
@@ -101,11 +101,14 @@ test('copy() after slice()', function (t) {
 })
 
 test('copy() ascending and descending', function (t) {
-  var b
-  b = new B('abcdefghij')
+  var b = new B('abcdefghij')
   b.copy(b, 0, 3, 10) // ascending copy
   t.equal(b.toString(), 'defghijhij')
-  b = new B('abcdefghij')
+  t.end()
+})
+
+test('copy() descending', function (t) {
+  var b = new B('abcdefghij')
   b.copy(b, 3, 0, 7) // descending copy
   t.equal(b.toString(), 'abcabcdefg')
   t.end()