diff --git a/test/abi.parsers.js b/test/abi.parsers.js
index 8b5d59ef9240024770951cd48a7e20679a331e5d..740d52eca06bf6b87b24481947bbb90dc6137f96 100644
--- a/test/abi.parsers.js
+++ b/test/abi.parsers.js
@@ -716,6 +716,33 @@ describe('abi', function() {
 
         });
 
+        it('should parse output array', function () {
+            
+            // given
+            var d = clone(description);
+            d[0].outputs = [
+                { type: 'int[]' }
+            ];
+
+            // when
+            var parser = abi.outputParser(d);
+
+            // then
+            assert.equal(parser.test("0x" +
+                    "0000000000000000000000000000000000000000000000000000000000000002" + 
+                    "0000000000000000000000000000000000000000000000000000000000000005" + 
+                    "0000000000000000000000000000000000000000000000000000000000000006")[0][0],
+                5
+                );
+            assert.equal(parser.test("0x" +
+                    "0000000000000000000000000000000000000000000000000000000000000002" + 
+                    "0000000000000000000000000000000000000000000000000000000000000005" + 
+                    "0000000000000000000000000000000000000000000000000000000000000006")[0][1],
+                6
+                );
+
+        });
+
     });
 });