diff --git a/tests/Aggregation/Pipeline/CumulativeSumAggregationTest.php b/tests/Aggregation/Pipeline/CumulativeSumAggregationTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..b2214a1bd5cf4416086209675f77ff18651f0b60
--- /dev/null
+++ b/tests/Aggregation/Pipeline/CumulativeSumAggregationTest.php
@@ -0,0 +1,36 @@
+<?php
+
+/*
+ * This file is part of the ONGR package.
+ *
+ * (c) NFQ Technologies UAB <info@nfq.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace ONGR\ElasticsearchDSL\Tests\Aggregation\Pipeline;
+
+use ONGR\ElasticsearchDSL\Aggregation\Pipeline\CumulativeSumAggregation;
+
+/**
+ * Unit test for cumulative sum aggregation.
+ */
+class CumulativeSumAggregationTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Tests toArray method.
+     */
+    public function testToArray()
+    {
+        $aggregation = new CumulativeSumAggregation('acme', 'test');
+
+        $expected = [
+            'cumulative_sum' => [
+                'buckets_path' => 'test',
+            ],
+        ];
+
+        $this->assertEquals($expected, $aggregation->toArray());
+    }
+}