diff --git a/tests/Aggregation/Pipeline/SerialDifferencingAggregationTest.php b/tests/Aggregation/Pipeline/SerialDifferencingAggregationTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..aa52044634afbf46d34670fc44145b9b1470967e
--- /dev/null
+++ b/tests/Aggregation/Pipeline/SerialDifferencingAggregationTest.php
@@ -0,0 +1,38 @@
+<?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\SerialDifferencingAggregation;
+
+/**
+ * Unit test for serial differencing aggregation.
+ */
+class SerialDifferencingAggregationTest extends \PHPUnit_Framework_TestCase
+{
+    /**
+     * Tests toArray method.
+     */
+    public function testToArray()
+    {
+        $aggregation = new SerialDifferencingAggregation('acme', 'test');
+        $aggregation->addParameter('lag', '7');
+
+        $expected = [
+            'serial_diff' => [
+                'buckets_path' => 'test',
+                'lag' => '7'
+            ],
+        ];
+
+        $this->assertEquals($expected, $aggregation->toArray());
+    }
+}