]> zoso.dev Git - buffer.git/commitdiff
Added test for base64 strings without padding.
authorRomain Beauxis <toots@rastageeks.org>
Mon, 26 Aug 2013 14:58:31 +0000 (09:58 -0500)
committerRomain Beauxis <toots@rastageeks.org>
Mon, 26 Aug 2013 15:00:41 +0000 (10:00 -0500)
test/buffer.js

index 74c939ef5cb89a71685006af620854f0f9c3c3c8..34ca567adddd8b2beddca032bf35e13e35265082 100644 (file)
@@ -253,3 +253,9 @@ test('buffer.slice out of range', function (t) {
   t.equal((new B('hallo')).slice(10, 2).toString(), '');
   t.end();
 });
+
+test('base64 strings without padding', function (t) {
+  t.plan(1);
+  t.equal((new B('YW9ldQ', 'base64').toString()), 'aoeu');
+  t.end(); 
+});